/* SEOWINS.io – Landing & App (nahe am Original-Look) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --bg-elevated: #050814;
  --bg-card: rgba(12, 18, 36, 0.75);
  --bg-card-solid: #0b1224;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(37, 99, 235, 0.45);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --accent-glow: rgba(37, 99, 235, 0.55);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 12px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--accent-bright); text-decoration: none; }
a:hover { color: #93c5fd; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: 12px; border: none;
  font-weight: 700; font-size: 0.95rem; font-family: inherit;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none; color: #fff;
}
.btn:hover { transform: translateY(-1px); color: #fff; }
.btn-primary {
  background: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,.4), 0 10px 40px rgba(37,99,235,.45);
}
.btn-primary:hover { background: #1d4ed8; box-shadow: 0 12px 48px rgba(37,99,235,.65); }
.btn-outline { background: transparent; border: 1px solid var(--border-strong); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-muted); font-weight: 600; }
.btn-ghost:hover { color: #fff; }
.btn-danger { background: var(--danger); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* NAV – wie Original */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(0,0,0,.72);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1rem;
}
.logo {
  font-size: 1.4rem; font-weight: 800; color: #fff;
  letter-spacing: -0.03em;
}
.logo span { color: #3b82f6; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { color: #9ca3af; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 0.85rem; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: #fff; padding: 0.4rem 0.7rem; border-radius: 8px; cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 58%; height: 90%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(37,99,235,.45), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(29,78,216,.25), transparent 50%);
  pointer-events: none;
  filter: blur(2px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(59,130,246,.35);
  box-shadow: 0 0 24px rgba(37,99,235,.2);
}
.hero h1 .accent { color: #3b82f6; }
.hero p.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.85rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-bottom: 2.25rem;
}
.price-chip {
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.price-chip strong { color: #fff; font-size: 1.15rem; }
.price-chip s { color: var(--text-dim); margin-left: 0.4rem; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.trust-item {
  display: flex; flex-direction: column; gap: 0.45rem;
  color: var(--text-muted); font-size: 0.78rem; font-weight: 500;
}
.trust-item .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.25);
  color: #60a5fa;
  display: grid; place-items: center;
  box-shadow: 0 0 20px rgba(37,99,235,.25);
}
.trust-item .ico svg { width: 18px; height: 18px; }

/* Hero visual – Glow + Original Portrait */
.hero-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.hero-glow-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(59,130,246,.35);
  box-shadow:
    0 0 80px rgba(37,99,235,.45),
    inset 0 0 60px rgba(37,99,235,.15);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-ring.r2 {
  width: 440px; height: 440px;
  border-color: rgba(59,130,246,.15);
  animation-delay: .6s;
}
.hero-photo {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  aspect-ratio: 1.15 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 80px rgba(37,99,235,.35),
    0 30px 60px rgba(0,0,0,.55);
  background: #020617;
}
.hero-photo--portrait {
  width: min(340px, 78%);
  aspect-ratio: 3 / 4;
}
.hero-photo--portrait img {
  object-position: center top;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, transparent 40%, rgba(0,0,0,.35) 100%),
    linear-gradient(90deg, rgba(0,0,0,.25), transparent 30%);
  pointer-events: none;
}
/* Freistehendes Hero-Porträt wie im Original */
.hero-cutout {
  position: relative;
  z-index: 2;
  width: min(380px, 85%);
  filter: drop-shadow(0 0 40px rgba(37,99,235,.45));
}
.hero-cutout img {
  width: 100%;
  height: auto;
  display: block;
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.price-chip-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 0.1rem;
}
.hero-figure {
  position: relative;
  z-index: 2;
  width: min(280px, 70%);
  aspect-ratio: 3/4;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(37,99,235,.2), rgba(0,0,0,.85)),
    radial-gradient(circle at 50% 30%, #1e3a8a, #020617 70%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
.hero-figure .person {
  font-size: 7rem;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(59,130,246,.5));
  margin-bottom: .5rem;
  opacity: .95;
}
.hero-figure .caption {
  font-size: .8rem; color: #93c5fd; font-weight: 600; letter-spacing: .04em;
}
.float-badge {
  position: absolute;
  z-index: 3;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(10, 16, 32, .88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .55rem .85rem;
  font-size: .78rem; font-weight: 600; color: #e5e7eb;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(37,99,235,.15);
  animation: float-y 5s ease-in-out infinite;
}
.float-badge .dot {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; font-size: .85rem;
  background: rgba(37,99,235,.2); color: #60a5fa;
}
.float-badge.b1 { top: 8%; left: 4%; animation-delay: 0s; }
.float-badge.b2 { top: 22%; right: 2%; animation-delay: .8s; }
.float-badge.b3 { bottom: 28%; left: 0; animation-delay: 1.4s; }
.float-badge.b4 { bottom: 14%; right: 6%; animation-delay: .4s; }
.float-badge.b5 { top: 48%; right: -2%; animation-delay: 1.1s; }
.streak {
  position: absolute; z-index: 1;
  width: 3px; height: 120px;
  background: linear-gradient(180deg, transparent, #3b82f6, transparent);
  opacity: .7; filter: blur(1px);
  animation: streak 3.5s ease-in-out infinite;
}
.streak.s1 { left: 18%; top: 10%; }
.streak.s2 { right: 22%; top: 30%; animation-delay: 1s; height: 160px; }
.streak.s3 { left: 30%; bottom: 8%; animation-delay: 1.8s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes streak {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: .9; transform: translateY(12px); }
}

/* Sections */
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 2.75rem; }
.section-title h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.65rem;
}
.section-title h2 .accent { color: #3b82f6; }
.section-title p { color: var(--text-muted); max-width: 36rem; margin: 0 auto; }

.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem;
}
.feature-card {
  background: linear-gradient(180deg, rgba(15,23,42,.9), rgba(8,12,24,.95));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.85rem 1.35rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: rgba(59,130,246,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), 0 0 30px rgba(37,99,235,.12);
}
.feature-card .icon {
  width: 56px; height: 56px; margin: 0 auto 1.1rem;
  border-radius: 16px;
  background: rgba(37,99,235,.12);
  color: #60a5fa;
  display: grid; place-items: center;
  box-shadow: 0 0 28px rgba(37,99,235,.3);
}
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; }

/* Dashboard / laptop preview */
.preview-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.laptop {
  background: #111827;
  border: 3px solid #1f2937;
  border-radius: 18px 18px 10px 10px;
  padding: 0.7rem;
  transform: perspective(1200px) rotateY(10deg) rotateX(5deg);
  box-shadow: var(--shadow-glow), 40px 40px 80px rgba(0,0,0,.5);
}
.laptop-bezel {
  height: 10px; display: flex; justify-content: center; margin-bottom: .4rem;
}
.laptop-bezel span {
  width: 8px; height: 8px; border-radius: 50%; background: #374151;
}
.laptop-screen {
  background: #060b18;
  border-radius: 10px;
  padding: 1rem;
  min-height: 280px;
}
.dash-mini-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .85rem; font-size: .75rem; color: #64748b;
}
.dash-mini-head strong { color: #e2e8f0; font-size: .85rem; }
.dash-mini-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem;
}
.dash-mini-card {
  background: linear-gradient(145deg, rgba(37,99,235,.12), rgba(15,23,42,.8));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 0.9rem;
}
.dash-mini-card .ico-sm {
  width: 28px; height: 28px; border-radius: 8px; margin-bottom: .45rem;
  background: rgba(37,99,235,.2); color: #60a5fa;
  display: grid; place-items: center; font-size: .85rem;
}
.dash-mini-card strong { display: block; font-size: 0.8rem; margin-bottom: 0.25rem; }
.dash-mini-card .mini-btn {
  display: inline-block; margin-top: 0.5rem; font-size: 0.65rem;
  padding: 0.3rem 0.55rem; background: #2563eb; border-radius: 6px; font-weight: 600;
}
.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li {
  display: flex; gap: 0.7rem; margin-bottom: 0.85rem; color: var(--text-muted); align-items: flex-start;
}
.check-list li .ck {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(37,99,235,.2); color: #60a5fa;
  display: grid; place-items: center; font-size: .7rem; font-weight: 800;
}

/* Social proof */
.social-proof {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem; align-items: stretch;
}
.stats { display: grid; gap: 1rem; }
.stat-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.stat-item .stat-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,.15); color: #60a5fa;
  display: grid; place-items: center; box-shadow: 0 0 20px rgba(37,99,235,.2);
}
.stat-item .num { font-size: 1.65rem; font-weight: 800; line-height: 1.1; }
.stat-item .lbl { color: var(--text-muted); font-size: 0.88rem; }
.testimonial {
  background: linear-gradient(160deg, rgba(15,23,42,.95), rgba(8,12,24,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.85rem;
}
.stars { color: #fbbf24; letter-spacing: 3px; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial blockquote {
  font-size: 1.08rem; margin-bottom: 1.35rem; color: #e5e7eb; font-weight: 500; line-height: 1.55;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  display: grid; place-items: center; font-weight: 700;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(105deg, rgba(29,78,216,.35), rgba(15,23,42,.95) 45%, rgba(37,99,235,.2));
  border: 1px solid rgba(59,130,246,.35);
  border-radius: 18px;
  padding: 2rem 2.4rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  box-shadow: 0 0 50px rgba(37,99,235,.15);
}
.cta-banner h3 { font-size: 1.45rem; font-weight: 800; }
.cta-banner .price { font-size: 1.75rem; font-weight: 800; color: #fff; }
.cta-banner .price s { font-size: 1rem; color: var(--text-dim); font-weight: 500; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem; margin-top: 1rem; background: #000;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
.footer-grid h4 { margin-bottom: 1rem; font-size: 0.95rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: var(--text-muted); font-size: 0.9rem; }
.footer-grid p { color: var(--text-muted); font-size: 0.9rem; }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.social-icons a:hover { border-color: var(--accent); color: #fff; }
.copyright {
  text-align: center; color: var(--text-dim); font-size: 0.85rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}

/* Legal / CMS pages */
.legal-page { max-width: 820px; }
.legal-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
}
.legal-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.legal-body { color: var(--text-muted); font-size: 0.98rem; line-height: 1.75; }
.legal-body h2 {
  color: #fff;
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
}
.legal-body h3 { color: #e2e8f0; font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.legal-body p { margin-bottom: 0.85rem; }
.legal-body ul, .legal-body ol { margin: 0.5rem 0 1rem 1.25rem; }
.legal-body a { color: var(--accent-bright); }
.legal-body em { color: var(--text-dim); font-size: 0.9rem; }

.price-chip-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 0.1rem;
}

/* Auth / forms / dashboard (rest) */
.auth-page {
  min-height: 100vh; display: grid; place-items: center; padding: 2rem;
  background: radial-gradient(circle at 20% 20%, rgba(37,99,235,.22), transparent 42%), #000;
}
.auth-card {
  width: min(420px, 100%); background: var(--bg-card-solid);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.auth-card .sub { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.form-control {
  width: 100%; padding: 0.7rem 0.9rem; background: #050814;
  border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 0.95rem; font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.2); }
select.form-control { appearance: none; }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.3rem; }

.alert { padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.alert-info { background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.3); color: #93c5fd; }
.alert-warning { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #fcd34d; }

.app-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar {
  background: #050814; border-right: 1px solid var(--border);
  padding: 1.25rem 1rem; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar .logo { display: block; margin-bottom: 1.5rem; padding: 0 0.5rem; }
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.85rem; border-radius: 10px; color: var(--text-muted);
  font-size: 0.92rem; margin-bottom: 0.2rem;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(37,99,235,.12); color: #fff;
}
.sidebar-nav .section-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim); padding: 1rem 0.85rem 0.4rem;
}
.main-area { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.75rem; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.7); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.topbar h1 { font-size: 1.2rem; }
.user-chip { display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.9rem; }
.content { padding: 1.75rem; }

.card {
  background: var(--bg-card-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; gap: 1rem;
}
.card-header h2, .card-header h3 { font-size: 1.05rem; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--bg-card-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.stat-card .label { color: var(--text-muted); font-size: 0.85rem; }
.stat-card .value { font-size: 1.75rem; font-weight: 800; margin-top: 0.3rem; }
.stat-card .value.blue { color: var(--accent-bright); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.product-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.product-card .type-tag { font-size: 0.75rem; color: var(--accent-bright); margin-bottom: 0.5rem; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.product-card .desc { color: var(--text-muted); font-size: 0.88rem; flex: 1; margin-bottom: 1rem; }
.product-card .price { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.product-card .price small { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.specs span {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.25rem 0.5rem; font-size: 0.75rem; color: var(--text-muted);
}

.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data th, table.data td {
  text-align: left; padding: 0.85rem 0.75rem; border-bottom: 1px solid var(--border);
}
table.data th {
  color: var(--text-muted); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
table.data tr:hover td { background: rgba(255,255,255,.02); }

.badge {
  display: inline-block; padding: 0.2rem 0.55rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-success { background: rgba(34,197,94,.15); color: #86efac; }
.badge-warning { background: rgba(245,158,11,.15); color: #fcd34d; }
.badge-danger { background: rgba(239,68,68,.15); color: #fca5a5; }
.badge-info { background: rgba(56,189,248,.15); color: #7dd3fc; }
.badge-primary { background: rgba(37,99,235,.2); color: #93c5fd; }
.badge-muted { background: rgba(148,163,184,.15); color: #94a3b8; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.service-card {
  background: var(--bg-card-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.service-card h3 { font-size: 1rem; margin: 0.5rem 0; }
.service-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.service-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tabs a {
  padding: 0.5rem 1rem; border-radius: 8px; color: var(--text-muted);
  border: 1px solid transparent; font-size: 0.9rem;
}
.tabs a.active, .tabs a:hover {
  background: rgba(37,99,235,.12); border-color: var(--border-strong); color: #fff;
}
.ticket-thread { display: flex; flex-direction: column; gap: 1rem; }
.ticket-msg {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem;
}
.ticket-msg.staff { border-color: rgba(37,99,235,.3); background: rgba(37,99,235,.06); }
.ticket-msg .meta { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.text-right { text-align: right; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero-grid, .preview-grid, .social-proof, .footer-grid, .app-shell, .grid-2 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .sidebar { display: none; }
  .app-shell.sidebar-open .sidebar { display: block; position: fixed; z-index: 200; width: 260px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .laptop { transform: none; }
  .float-badge.b5 { display: none; }
  .hero-photo { width: min(100%, 420px); }
  .hero-stage { min-height: 360px; }
}
@media (max-width: 600px) {
  .feature-grid, .stats-grid, .form-row { grid-template-columns: 1fr; }
  .content { padding: 1rem; }
  .hero-stage { min-height: 340px; }
}
