/* ClockTeam Marketing v2 – SaaS Premium */
:root {
  --ct-primary: #071629;
  --ct-primary-mid: #10243A;
  --ct-primary-light: #1e3a5f;
  --ct-accent: #18BFAE;
  --ct-accent-hover: #14a89a;
  --ct-accent-soft: rgba(24, 191, 174, 0.12);
  --ct-orange: #f59e0b;
  --ct-bg: #F1F5F9;
  --ct-bg-soft: #F1F5F9;
  --ct-bg-muted: #e8edf4;
  --ct-text: #0B172A;
  --ct-muted: #5c6b7f;
  --ct-border: #e2e8f0;
  --ct-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  --ct-shadow-lg: 0 24px 48px rgba(10, 22, 40, 0.12);
  --ct-radius: 16px;
  --ct-radius-sm: 10px;
  --ct-nav-h: 76px;
  --ct-max: 1180px;
  --ct-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ct-font);
  color: var(--ct-text);
  background: var(--ct-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.has-cookie-banner { padding-bottom: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--ct-primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ct-accent); }

.ct-container { width: min(100% - 2.5rem, var(--ct-max)); margin-inline: auto; }
.ct-section { padding: 4rem 0; }
.ct-section--soft { background: var(--ct-bg-soft); }
.ct-section--muted { background: var(--ct-bg-muted); }
.ct-section--dark {
  background: linear-gradient(145deg, var(--ct-primary) 0%, var(--ct-primary-mid) 55%, #152d4a 100%);
  color: #e2e8f0;
}
.ct-section--dark .ct-heading h2,
.ct-section--dark .ct-heading p,
.ct-section--dark h3 { color: #fff; }
.ct-section--dark .ct-heading p { color: #94a3b8; }
.ct-section--dark .ct-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #e2e8f0;
}
.ct-section--dark .ct-card h3 { color: #fff; }
.ct-section--dark .ct-card p { color: #94a3b8; }

/* Reveal animation */
.ct-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ct-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ct-reveal { opacity: 1; transform: none; transition: none; }
  .ct-card, .ct-price-card { transition: none !important; }
}

/* Nav */
.ct-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ct-border);
  height: var(--ct-nav-h);
}
.ct-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--ct-nav-h); position: relative; gap: 1rem;
}
.ct-nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 700; color: var(--ct-primary); font-size: 1.2rem;
}
.ct-nav__brand img { width: 42px; height: 42px; }
.ct-nav__links {
  display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0;
}
.ct-nav__links a { color: var(--ct-text); font-weight: 500; font-size: 0.92rem; }
.ct-nav__actions { display: flex; gap: 0.65rem; align-items: center; flex-shrink: 0; }
.ct-nav__toggle {
  display: none; background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--ct-primary); padding: 0.25rem;
}

/* Buttons */
.ct-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.72rem 1.35rem; border-radius: 999px; font-weight: 600;
  font-size: 0.92rem; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center; white-space: nowrap;
}
.ct-btn:hover { transform: translateY(-1px); }
.ct-btn--primary { background: var(--ct-accent); color: #fff; box-shadow: 0 4px 14px rgba(20,184,166,0.35); }
.ct-btn--primary:hover { background: var(--ct-accent-hover); color: #fff; }
.ct-btn--secondary { background: var(--ct-primary); color: #fff; }
.ct-btn--secondary:hover { background: var(--ct-primary-light); color: #fff; }
.ct-btn--outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.ct-btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.ct-btn--ghost { background: transparent; color: var(--ct-primary); border: 2px solid var(--ct-border); }
.ct-btn--ghost:hover { border-color: var(--ct-primary); color: var(--ct-primary); transform: none; }
.ct-btn--white { background: #fff; color: var(--ct-primary); }
.ct-btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }

/* Hero v3 – Premium SaaS full-width */
body[data-ct-page="index"] .ct-nav {
  background: rgba(8, 15, 28, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body[data-ct-page="index"] .ct-nav__brand { color: #fff; }
body[data-ct-page="index"] .ct-nav__links a { color: rgba(255,255,255,0.82); }
body[data-ct-page="index"] .ct-nav__links a:hover,
body[data-ct-page="index"] .ct-nav__links a[aria-current="page"] { color: var(--ct-accent); }
body[data-ct-page="index"] .ct-nav__toggle { color: #fff; }
body[data-ct-page="index"] .ct-btn--ghost {
  border-color: rgba(255,255,255,0.28); color: #fff;
}
body[data-ct-page="index"] .ct-btn--ghost:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff;
}
body[data-ct-page="index"] .ct-nav.open .ct-nav__links,
body[data-ct-page="index"] .ct-nav.open .ct-nav__actions { background: #0a1628; }

.ct-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 184, 166, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30, 58, 95, 0.5) 0%, transparent 50%),
    linear-gradient(155deg, #060d18 0%, #0a1628 35%, #111f35 70%, #0d1829 100%);
  color: #e2e8f0;
}
.ct-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}
.ct-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ct-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ct-accent);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.95rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 999px;
}
.ct-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ct-hero__lead {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: #94a3b8;
  margin-bottom: 1.35rem;
  max-width: 32rem;
  line-height: 1.65;
}
.ct-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.ct-hero__actions .ct-btn--primary { padding: 0.85rem 1.55rem; font-size: 0.94rem; }
.ct-hero__actions .ct-btn--white {
  background: rgba(255,255,255,0.95); color: var(--ct-primary);
  padding: 0.85rem 1.55rem; font-size: 0.94rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.ct-hero__actions .ct-btn--white:hover { background: #fff; color: var(--ct-primary); }
.ct-hero__notes {
  display: flex; flex-wrap: wrap; gap: 0.65rem 1.75rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.88rem; color: #64748b;
}
.ct-hero__notes li { display: flex; align-items: center; gap: 0.45rem; }
.ct-hero__notes svg { width: 17px; height: 17px; color: var(--ct-accent); flex-shrink: 0; }

/* Device mockup scene */
.ct-device-scene {
  position: relative;
  min-height: 0;
  max-height: min(480px, calc(100svh - var(--ct-nav-h) - 2.5rem));
  perspective: 1200px;
}
.ct-laptop {
  position: relative;
  transform: rotateY(-8deg) rotateX(2deg);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.45));
}
.ct-laptop__screen {
  background: linear-gradient(145deg, #1a2332 0%, #0f172a 100%);
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
}
.ct-laptop__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 0 4px 8px;
}
.ct-laptop__chrome span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.ct-laptop__chrome span:nth-child(1) { background: #ff5f57; }
.ct-laptop__chrome span:nth-child(2) { background: #febc2e; }
.ct-laptop__chrome span:nth-child(3) { background: #28c840; }
.ct-laptop__viewport {
  background: #f1f5f9;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  min-height: 320px;
}
.ct-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  border-radius: 0 0 12px 12px;
  margin: 0 8%;
  position: relative;
}
.ct-laptop__base::after {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 18%; height: 4px; background: #4a5568; border-radius: 0 0 4px 4px;
}

.ct-phone {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 118px;
  transform: rotate(6deg);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
  z-index: 4;
}
.ct-phone__frame {
  background: #1a202c;
  border-radius: 22px;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.15);
}
.ct-phone__notch {
  width: 40%; height: 5px; background: #0f172a;
  border-radius: 999px; margin: 0 auto 6px;
}
.ct-phone__screen {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  font-size: 0.55rem;
}

/* In-app UI (hero dashboard) */
.ct-app-ui {
  display: grid;
  grid-template-columns: 44px 1fr;
  min-height: 320px;
  font-size: 0.62rem;
}
.ct-app-ui__side {
  background: linear-gradient(180deg, #0a1628, #0f2744);
  padding: 0.65rem 0.35rem;
  display: flex; flex-direction: column; gap: 0.45rem; align-items: center;
}
.ct-app-ui__side i {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.ct-app-ui__side i.active { background: var(--ct-accent); }
.ct-app-ui__side svg { width: 13px; height: 13px; color: #fff; }
.ct-app-ui__main { padding: 0.65rem; background: #f8fafc; }
.ct-app-ui__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.55rem; font-weight: 700; color: var(--ct-primary);
}
.ct-app-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem;
  margin-bottom: 0.55rem;
}
.ct-app-stat {
  background: #fff; border-radius: 8px; padding: 0.45rem 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ct-app-stat strong {
  display: block; font-size: 0.95rem; color: var(--ct-primary); line-height: 1.2;
}
.ct-app-stat span { color: var(--ct-muted); font-size: 0.55rem; }
.ct-app-stat--accent strong { color: var(--ct-accent); }
.ct-app-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0.45rem;
}
.ct-app-panel {
  background: #fff; border-radius: 8px; padding: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ct-app-panel__title {
  font-weight: 700; color: var(--ct-primary); margin-bottom: 0.35rem;
  font-size: 0.58rem; display: flex; align-items: center; gap: 0.3rem;
}
.ct-app-panel__title svg { width: 11px; height: 11px; color: var(--ct-accent); }
.ct-app-row {
  display: flex; justify-content: space-between; padding: 0.18rem 0;
  border-bottom: 1px solid #f1f5f9; color: var(--ct-muted);
}
.ct-app-row:last-child { border: none; }
.ct-app-row b { color: var(--ct-primary); font-weight: 600; }
.ct-app-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.3rem; }
.ct-app-tag {
  padding: 0.15rem 0.4rem; border-radius: 999px; font-size: 0.5rem; font-weight: 600;
}
.ct-app-tag--green { background: #dcfce7; color: #166534; }
.ct-app-tag--amber { background: #fef3c7; color: #92400e; }
.ct-app-tag--blue { background: #dbeafe; color: #1e40af; }
.ct-app-bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; margin-top: 0.25rem; }
.ct-app-bars i {
  flex: 1; background: linear-gradient(180deg, var(--ct-accent), rgba(20,184,166,0.4));
  border-radius: 3px 3px 0 0; min-height: 20%;
}
.ct-app-bars i:nth-child(1) { height: 45%; }
.ct-app-bars i:nth-child(2) { height: 70%; }
.ct-app-bars i:nth-child(3) { height: 55%; }
.ct-app-bars i:nth-child(4) { height: 85%; }
.ct-app-bars i:nth-child(5) { height: 60%; }

/* Dashboard tiles – Multi-Modul Mockup */
.ct-app-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.3rem;
  margin-bottom: 0.45rem;
}
.ct-app-tile {
  background: #fff; border-radius: 6px; padding: 0.3rem 0.35rem;
  border: 1px solid #e2e8f0; text-align: center;
}
.ct-app-tile strong { display: block; font-size: 0.75rem; color: var(--ct-primary); line-height: 1.2; }
.ct-app-tile span { display: block; font-size: 0.48rem; color: var(--ct-muted); line-height: 1.2; }
.ct-app-tile--green strong { color: #059669; }
.ct-app-tile--amber strong { color: #d97706; }
.ct-app-tile--blue strong { color: #2563eb; }
.ct-app-grid--compact { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
.ct-app-ui__side i { width: 22px; height: 22px; }

.ct-mobile-ui { padding: 0.5rem; }
.ct-mobile-ui__time {
  text-align: center; font-size: 1.1rem; font-weight: 800;
  color: var(--ct-primary); margin: 0.25rem 0;
}
.ct-mobile-ui__btns {
  display: grid; grid-template-columns: 1fr; gap: 0.35rem; margin-top: 0.5rem;
}
.ct-mobile-ui__btn {
  padding: 0.45rem; border-radius: 8px; text-align: center;
  font-weight: 700; font-size: 0.58rem;
}
.ct-mobile-ui__btn--in { background: #dcfce7; color: #166534; }
.ct-mobile-ui__btn--pause { background: #fef3c7; color: #92400e; }

/* Industry strip */
.ct-industries {
  padding: 1.35rem 0;
  background: #fff;
  border-bottom: 1px solid var(--ct-border);
  box-shadow: 0 4px 20px rgba(10,22,40,0.04);
}
.ct-industries__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.5rem;
}
.ct-industries__label {
  font-size: 0.82rem; font-weight: 700; color: var(--ct-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ct-industry-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--ct-bg-soft); border: 1px solid var(--ct-border);
  font-size: 0.88rem; font-weight: 600; color: var(--ct-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ct-industry-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--ct-shadow);
}
.ct-industry-pill svg { width: 18px; height: 18px; color: var(--ct-accent); }

/* Platform showcase */
.ct-platform { padding: 4rem 0; }
.ct-platform__intro { text-align: center; margin-bottom: 2.75rem; }
.ct-platform__intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ct-primary); margin: 0 0 1rem;
  font-weight: 800; letter-spacing: -0.02em;
}
.ct-platform__intro p {
  color: var(--ct-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto;
}
.ct-platform__block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 6rem;
}
.ct-platform__block:last-child { margin-bottom: 0; }
.ct-platform__block--reverse { direction: rtl; }
.ct-platform__block--reverse > * { direction: ltr; }
.ct-platform__block--dark {
  background: linear-gradient(135deg, #0a1628 0%, #152d4a 100%);
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding: 5rem calc(50vw - 50%);
  border-radius: 0;
  color: #e2e8f0;
}
.ct-platform__block--dark .ct-platform__text h3 { color: #fff; }
.ct-platform__block--dark .ct-platform__text p { color: #94a3b8; }
.ct-platform__text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ct-primary); margin: 0 0 1rem; font-weight: 800;
}
.ct-platform__text p { color: var(--ct-muted); font-size: 1.05rem; line-height: 1.75; margin: 0 0 1.5rem; }
.ct-platform__list {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
}
.ct-platform__list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.4rem 0; font-size: 0.95rem; color: var(--ct-muted);
}
.ct-platform__block--dark .ct-platform__list li { color: #94a3b8; }
.ct-platform__list svg { width: 20px; height: 20px; color: var(--ct-accent); flex-shrink: 0; margin-top: 2px; }
.ct-platform__visual {
  position: relative;
}
.ct-platform__visual--large {
  filter: drop-shadow(0 32px 48px rgba(10,22,40,0.15));
}
.ct-mock-screen {
  background: #fff; border-radius: var(--ct-radius);
  border: 1px solid var(--ct-border);
  overflow: hidden;
  box-shadow: var(--ct-shadow-lg);
}
.ct-mock-screen__bar {
  background: linear-gradient(90deg, var(--ct-primary), var(--ct-primary-mid));
  color: #fff; padding: 0.65rem 1rem;
  font-size: 0.78rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.ct-mock-screen__body { padding: 1.15rem; background: #f8fafc; min-height: 280px; }
.ct-mock-card {
  background: #fff; border-radius: 10px; padding: 0.85rem;
  border: 1px solid var(--ct-border); margin-bottom: 0.65rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ct-mock-card:last-child { margin-bottom: 0; }
.ct-mock-float {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 0.75rem 1rem; box-shadow: 0 12px 32px rgba(10,22,40,0.12);
  border: 1px solid var(--ct-border); font-size: 0.78rem; font-weight: 600;
  color: var(--ct-primary);
}
.ct-mock-float--1 { top: -12px; right: -16px; }
.ct-mock-float--2 { bottom: 24px; left: -20px; color: var(--ct-accent); }

.ct-platform-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.ct-platform-mini {
  background: #fff; border-radius: var(--ct-radius); padding: 1.5rem;
  border: 1px solid var(--ct-border); box-shadow: var(--ct-shadow);
  transition: transform 0.25s;
}
.ct-platform-mini:hover { transform: translateY(-4px); }
.ct-platform-mini__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ct-accent-soft); color: var(--ct-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.ct-platform-mini__icon svg { width: 24px; height: 24px; }
.ct-platform-mini h4 { margin: 0 0 0.5rem; color: var(--ct-primary); font-size: 1.05rem; }
.ct-platform-mini p { margin: 0; font-size: 0.9rem; color: var(--ct-muted); }

/* Premium pricing section */
.ct-pricing-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f4f7fb 100%);
  padding: 6rem 0;
}
.ct-pricing-section .ct-heading h2 { font-size: clamp(2rem, 3.2vw, 2.6rem); }
.ct-pricing { gap: 1.75rem; max-width: 1100px; margin: 0 auto; }
.ct-price-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
}
.ct-price-card--popular {
  transform: scale(1.08);
  padding: 2.75rem 2rem 2.5rem;
  box-shadow: 0 24px 56px rgba(20,184,166,0.22), 0 0 0 1px rgba(20,184,166,0.3);
  background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
}
.ct-price-card__badge {
  font-size: 0.75rem; padding: 0.4rem 1.15rem;
  box-shadow: 0 4px 12px rgba(20,184,166,0.35);
}
.ct-price-card__value { font-size: 2.85rem; }
.ct-pricing-compare {
  max-width: 900px; margin: 3.5rem auto 0;
}
.ct-pricing-compare details {
  background: #fff; border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius); overflow: hidden;
  box-shadow: var(--ct-shadow);
}
.ct-pricing-compare summary {
  padding: 1.15rem 1.5rem; font-weight: 600; cursor: pointer;
  color: var(--ct-primary); list-style: none;
}
.ct-pricing-compare summary::-webkit-details-marker { display: none; }
.ct-pricing-compare .ct-table-wrap { margin: 0; border: none; border-radius: 0; }

/* Compact floating cookie */
.ct-cookie {
  background: #fff; color: var(--ct-text);
  position: fixed; bottom: 1.25rem; right: 1.25rem; left: auto;
  z-index: 1500; max-width: 320px; width: calc(100% - 2rem);
  padding: 1rem 1.15rem 1rem 1.15rem; display: none;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  box-shadow: 0 16px 48px rgba(10,22,40,0.18);
}
.ct-cookie.show { display: block; }
.ct-cookie__inner { display: block; }
.ct-cookie__text p { margin: 0; font-size: 0.82rem; color: var(--ct-muted); line-height: 1.5; }
.ct-cookie__text strong { font-size: 0.88rem; margin-bottom: 0.25rem; }
.ct-cookie__actions {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem;
}
.ct-cookie__actions .ct-btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
.ct-cookie__panel {
  margin-top: 0.65rem; padding: 0.75rem; font-size: 0.8rem;
  background: var(--ct-bg-soft); border-radius: var(--ct-radius-sm);
}
.ct-cookie__panel label { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.ct-cookie__close {
  position: absolute; top: 0.5rem; right: 0.65rem;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; color: var(--ct-muted); line-height: 1;
}

/* Trust */
.ct-trust { padding: 2.5rem 0; background: #fff; border-bottom: 1px solid var(--ct-border); }
.ct-trust__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.ct-trust__item {
  text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--ct-primary);
  padding: 0.5rem;
}
.ct-trust__icon {
  width: 44px; height: 44px; margin: 0 auto 0.65rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--ct-accent-soft); border-radius: 12px; color: var(--ct-accent);
}
.ct-trust__icon svg { width: 22px; height: 22px; }

/* Headings */
.ct-heading { text-align: center; margin-bottom: 3rem; }
.ct-heading h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem); color: var(--ct-primary);
  margin: 0 0 0.75rem; font-weight: 800; letter-spacing: -0.02em;
}
.ct-heading p { color: var(--ct-muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* Cards */
.ct-grid { display: grid; gap: 1.5rem; }
.ct-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ct-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ct-card {
  background: #fff; border: 1px solid var(--ct-border); border-radius: var(--ct-radius);
  padding: 1.75rem; box-shadow: var(--ct-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%; display: flex; flex-direction: column;
}
.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1);
}
.ct-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--ct-accent-soft); color: var(--ct-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.15rem;
}
.ct-card__icon svg { width: 26px; height: 26px; }
.ct-card h3 { margin: 0 0 0.6rem; font-size: 1.12rem; color: var(--ct-primary); font-weight: 700; }
.ct-card__title { margin: 0 0 0.6rem; font-size: 1.12rem; color: var(--ct-primary); font-weight: 700; }
.ct-card p { margin: 0; font-size: 0.93rem; color: var(--ct-muted); flex: 1; }

/* Steps */
.ct-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.ct-step { text-align: center; padding: 1.5rem; }
.ct-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ct-accent), var(--ct-accent-hover));
  color: #fff; font-weight: 800; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 8px 20px rgba(20,184,166,0.3);
}
.ct-step h3 { margin: 0 0 0.5rem; color: var(--ct-primary); font-size: 1.15rem; }
.ct-step p { color: var(--ct-muted); margin: 0; font-size: 0.95rem; }

/* Pricing */
.ct-pricing-wrap { max-width: 1000px; margin: 0 auto; }
.ct-pricing-toggle {
  display: inline-flex; justify-content: center; gap: 0;
  margin-bottom: 0.75rem; background: #fff; border-radius: 999px;
  padding: 4px; border: 1px solid var(--ct-border);
  box-shadow: var(--ct-shadow);
}
.ct-pricing-toggle button {
  padding: 0.6rem 1.5rem; border-radius: 999px; border: none;
  background: transparent; cursor: pointer; font-weight: 600; font-size: 0.92rem;
  color: var(--ct-muted); transition: 0.2s;
}
.ct-pricing-toggle button.active {
  background: var(--ct-primary); color: #fff;
  box-shadow: 0 2px 8px rgba(10,22,40,0.15);
}
.ct-pricing-hint {
  text-align: center; color: var(--ct-accent); font-weight: 600;
  font-size: 0.9rem; margin-bottom: 1.25rem;
}
.ct-price-card {
  background: #fff; border: 2px solid var(--ct-border); border-radius: var(--ct-radius);
  padding: 1.65rem 1.45rem; position: relative;
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.ct-price-card:hover { box-shadow: var(--ct-shadow-lg); }
.ct-price-card--popular {
  border-color: var(--ct-accent);
  box-shadow: 0 12px 32px rgba(20,184,166,0.18);
  z-index: 2;
  padding-top: 2rem;
}
.ct-price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ct-accent), var(--ct-accent-hover));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.ct-price-card h3 { margin: 0; color: var(--ct-primary); font-size: 1.2rem; font-weight: 700; }
.ct-price-card__desc { margin: 0.35rem 0 0; font-size: 0.88rem; color: var(--ct-muted); line-height: 1.5; }
.ct-price-card__amount { margin: 1rem 0; }
.ct-price-card__value {
  display: block; font-size: 2.15rem; font-weight: 800;
  color: var(--ct-primary); line-height: 1.1;
}
.ct-price-card__amount small { display: block; font-size: 0.88rem; color: var(--ct-muted); margin-top: 0.25rem; }
.ct-price-card__yearly { display: block; font-size: 0.82rem; color: var(--ct-accent); margin-top: 0.35rem; font-weight: 600; }
.ct-price-card ul { list-style: none; padding: 0; margin: 0 0 1.75rem; flex: 1; }
.ct-price-card__features { list-style: none; padding: 0; margin: 0 0 0.75rem; flex: 1; }
.ct-price-card__features--more { margin-bottom: 0.5rem; }
.ct-price-card__expand {
  background: none; border: none; padding: 0; margin: 0 0 1rem;
  font: inherit; font-size: 0.85rem; font-weight: 600;
  color: var(--ct-accent); cursor: pointer; text-align: left;
}
.ct-price-card__expand:hover { text-decoration: underline; }
.ct-price-card li {
  padding: 0.4rem 0; font-size: 0.88rem; color: var(--ct-muted);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.ct-price-card li::before { content: "✓"; color: var(--ct-accent); font-weight: 800; flex-shrink: 0; }
.ct-price-card__cta { margin-top: auto; width: 100%; }
.ct-pricing-notes { text-align: center; margin-top: 2.5rem; color: var(--ct-muted); font-size: 0.9rem; }
.ct-pricing-notes p { margin: 0.35rem 0; }

/* Table */
.ct-table-wrap { overflow-x: auto; margin-top: 3.5rem; border-radius: var(--ct-radius); border: 1px solid var(--ct-border); }
.ct-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.9rem; background: #fff; }
.ct-table th, .ct-table td { padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--ct-border); text-align: center; }
.ct-table th:first-child, .ct-table td:first-child { text-align: left; font-weight: 600; }
.ct-table thead th { background: var(--ct-bg-soft); color: var(--ct-primary); font-weight: 700; }
.ct-check { color: var(--ct-accent); font-weight: 700; }
.ct-cross { color: #cbd5e1; }

/* Product preview */
.ct-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ct-preview-card {
  background: #fff; border-radius: var(--ct-radius); overflow: hidden;
  border: 1px solid var(--ct-border); box-shadow: var(--ct-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ct-preview-card:hover { transform: translateY(-4px); box-shadow: var(--ct-shadow-lg); }
.ct-preview-card__screen {
  background: var(--ct-bg-soft); padding: 1rem; min-height: 160px;
  border-bottom: 1px solid var(--ct-border);
}
.ct-preview-card__label {
  padding: 1rem 1.25rem; font-weight: 700; color: var(--ct-primary); font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.ct-preview-card__label svg { width: 20px; height: 20px; color: var(--ct-accent); }
.ct-mini-ui { font-size: 0.72rem; color: var(--ct-muted); }
.ct-mini-ui__bar { height: 6px; background: #e2e8f0; border-radius: 999px; margin: 0.35rem 0; overflow: hidden; }
.ct-mini-ui__bar span { display: block; height: 100%; background: var(--ct-accent); border-radius: 999px; }
.ct-mini-row { display: flex; justify-content: space-between; padding: 0.25rem 0; border-bottom: 1px solid #f1f5f9; }

/* CTA */
.ct-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ct-primary) 0%, #152d4a 50%, var(--ct-primary-light) 100%);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.ct-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(20,184,166,0.15), transparent 50%);
}
.ct-cta .ct-container { position: relative; z-index: 1; }
.ct-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem); margin: 0 0 1rem;
  font-weight: 800; letter-spacing: -0.02em;
}
.ct-cta p {
  font-size: 1.1rem; color: #94a3b8; max-width: 560px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.ct-cta__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* FAQ */
.ct-faq { max-width: 780px; margin: 0 auto; }
.ct-faq details {
  border: 1px solid var(--ct-border); border-radius: var(--ct-radius);
  margin-bottom: 0.85rem; padding: 0 1.25rem; background: #fff;
  box-shadow: var(--ct-shadow);
}
.ct-faq summary {
  padding: 1.15rem 0; font-weight: 600; cursor: pointer;
  color: var(--ct-primary); list-style: none; font-size: 1rem;
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq details[open] summary { border-bottom: 1px solid var(--ct-border); margin-bottom: 0.75rem; }
.ct-faq p { padding-bottom: 1.15rem; margin: 0; color: var(--ct-muted); font-size: 0.95rem; line-height: 1.7; }

/* Footer */
.ct-footer {
  background: var(--ct-primary); color: #94a3b8;
  padding: 4.5rem 0 2rem;
}
.ct-footer a { color: #cbd5e1; }
.ct-footer a:hover { color: var(--ct-accent); }
.ct-footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-footer__brand img { width: 48px; margin-bottom: 1rem; }
.ct-footer__brand p { font-size: 0.9rem; line-height: 1.65; max-width: 260px; margin: 0; }
.ct-footer h4 { color: #fff; margin: 0 0 1.15rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ct-footer ul { list-style: none; padding: 0; margin: 0; }
.ct-footer li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.ct-footer__bottom { text-align: center; font-size: 0.85rem; color: #64748b; }
.ct-footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .ct-footer__grid { grid-template-columns: 1fr; }
}

.ct-cookie__panel label { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }

/* Forms & legal */
.ct-form { max-width: 560px; margin: 0 auto; }
.ct-form label { display: block; margin-bottom: 1rem; font-weight: 500; font-size: 0.9rem; }
.ct-form input, .ct-form select, .ct-form textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.75rem;
  border: 1px solid var(--ct-border); border-radius: var(--ct-radius-sm); font: inherit;
}
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-form__check { display: flex; gap: 0.5rem; align-items: flex-start; font-weight: 400; }
.ct-form__check input { width: auto; margin-top: 0.25rem; }
.ct-form__msg { padding: 1rem; border-radius: var(--ct-radius-sm); margin-top: 1rem; display: none; }
.ct-form__msg--ok { background: #dcfce7; color: #166534; display: block; }
.ct-hp { position: absolute; left: -9999px; opacity: 0; }
.ct-legal { max-width: 760px; margin: 0 auto; padding: 3rem 0; }
.ct-placeholder { background: #fef3c7; border-left: 4px solid var(--ct-orange); padding: 0.75rem 1rem; margin: 1rem 0; font-size: 0.9rem; }
.ct-muted { color: var(--ct-muted); font-size: 0.92rem; }
.ct-center { text-align: center; margin-top: 2.5rem; }

/* Subpage hero */
.ct-page-hero {
  padding: 4.5rem 0 2.5rem;
  background: linear-gradient(165deg, var(--ct-primary) 0%, var(--ct-primary-mid) 55%, var(--ct-primary-light) 100%);
}
.ct-page-hero .ct-heading { margin-bottom: 0; }
.ct-page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: #f8fafc;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ct-page-hero p { color: rgba(248, 250, 252, 0.78); }
.ct-nav__links a[aria-current="page"] { color: var(--ct-accent); font-weight: 600; }

/* Badges – ehrliche Kennzeichnung */
.ct-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  padding: 0.18rem 0.45rem; border-radius: 999px; margin-top: 0.35rem;
  background: #fef3c7; color: #92400e; vertical-align: middle;
}
.ct-badge--dev { background: #fef3c7; color: #92400e; }
.ct-badge--planned { background: #e0e7ff; color: #3730a3; }

/* Module slider */
.ct-modules-section { padding: 2.5rem 0; }
.ct-module-card {
  background: #fff; border: 1px solid var(--ct-border); border-radius: var(--ct-radius);
  padding: 1.15rem 1rem; box-shadow: var(--ct-shadow); height: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
.ct-module-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ct-accent-soft); color: var(--ct-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.65rem;
}
.ct-module-card__icon svg { width: 20px; height: 20px; }
.ct-module-card h3 { margin: 0; font-size: 0.9rem; color: var(--ct-primary); font-weight: 700; line-height: 1.35; }
.ct-modules-carousel .ct-carousel__slide { flex: 0 0 calc(33.333% - 0.67rem); }

/* Highlights */
.ct-highlights { padding: 2.5rem 0; }
.ct-highlights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.ct-highlight-card {
  background: #fff; border: 1px solid var(--ct-border); border-radius: var(--ct-radius);
  padding: 1.35rem 1.15rem; box-shadow: var(--ct-shadow);
}
.ct-highlight-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ct-accent-soft); color: var(--ct-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
}
.ct-highlight-card__icon svg { width: 22px; height: 22px; }
.ct-highlight-card h3 { margin: 0 0 0.45rem; font-size: 0.98rem; color: var(--ct-primary); }
.ct-highlight-card p { margin: 0; font-size: 0.86rem; color: var(--ct-muted); line-height: 1.55; }

/* Onboarding */
.ct-onboarding-steps { margin: 1rem 0 0; padding-left: 1.15rem; color: var(--ct-muted); font-size: 0.92rem; }
.ct-onboarding-steps li { margin-bottom: 0.45rem; }

/* Carousel arrows */
.ct-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--ct-border);
  background: #fff; box-shadow: var(--ct-shadow); cursor: pointer;
  font-size: 1.35rem; line-height: 1; color: var(--ct-primary); z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ct-carousel__arrow--prev { left: -0.25rem; }
.ct-carousel__arrow--next { right: -0.25rem; }
.ct-carousel__arrow:hover { border-color: var(--ct-accent); color: var(--ct-accent); }

/* Carousel – Module & Preise */
.ct-carousel { position: relative; }
.ct-carousel__viewport { overflow: hidden; }
.ct-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0 0.75rem;
}
.ct-carousel__track::-webkit-scrollbar { display: none; }
.ct-carousel__slide { scroll-snap-align: start; flex-shrink: 0; min-width: 0; }

.ct-why-carousel .ct-carousel__slide {
  flex: 0 0 calc(33.333% - 0.67rem);
}
.ct-why-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--ct-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.ct-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}
.ct-why-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ct-accent-soft); color: var(--ct-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
}
.ct-why-card__icon svg { width: 22px; height: 22px; }
.ct-why-card h3 {
  margin: 0 0 0.4rem; font-size: 0.98rem; color: var(--ct-primary); font-weight: 700;
}
.ct-why-card p {
  margin: 0; font-size: 0.86rem; color: var(--ct-muted); line-height: 1.55;
}

.ct-pricing-carousel { max-width: 100%; margin: 0 auto; position: relative; }
.ct-pricing-carousel .ct-carousel__track {
  gap: 1.25rem;
  padding: 0.75rem 0.25rem;
  scroll-padding: 0 10%;
}
.ct-pricing-carousel .ct-carousel__slide {
  flex: 0 0 min(340px, 88%);
  scroll-snap-align: center;
}
.ct-pricing-carousel .ct-price-card--popular {
  border-width: 2px;
  box-shadow: 0 14px 36px rgba(20,184,166,0.2);
}

/* Demo wide layout */
.ct-demo--wide { max-width: 920px; }
.ct-demo__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--ct-border);
}
.ct-demo__mock {
  padding: 1.25rem; background: var(--ct-bg-soft);
  border-right: 1px solid var(--ct-border); min-height: 240px;
}
.ct-demo__info { padding: 1.35rem 1.25rem; }
.ct-demo__info h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--ct-primary); }
.ct-demo__info p { margin: 0; font-size: 0.9rem; color: var(--ct-muted); line-height: 1.6; }
.ct-demo__panel[hidden] { display: none; }
.ct-demo-mock[hidden] { display: none; }
.ct-demo-mock {
  background: #fff; border: 1px solid var(--ct-border); border-radius: var(--ct-radius-sm);
  overflow: hidden; box-shadow: var(--ct-shadow);
}
.ct-demo-mock__bar {
  padding: 0.55rem 0.75rem; font-size: 0.78rem; font-weight: 700;
  background: var(--ct-primary); color: #fff;
}
.ct-demo-mock__body { padding: 0.75rem; }
.ct-demo-mock__tile {
  padding: 0.45rem 0.6rem; border-radius: 8px; margin-bottom: 0.4rem;
  background: var(--ct-bg-soft); font-size: 0.82rem; color: var(--ct-primary); font-weight: 600;
}
.ct-demo-mock__tile--green { background: #dcfce7; color: #166534; }
.ct-demo-mock__tile--amber { background: #fef3c7; color: #92400e; }
.ct-demo-mock__row {
  display: flex; justify-content: space-between; padding: 0.35rem 0;
  font-size: 0.82rem; border-bottom: 1px solid var(--ct-bg-muted);
}
.ct-demo-mock__row span { color: var(--ct-muted); }
.ct-demo-mock__row b { color: var(--ct-primary); }
.ct-demo-mock__badge {
  margin-top: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--ct-accent);
}
.ct-demo-mock__bars { display: flex; align-items: flex-end; gap: 3px; height: 40px; margin-top: 0.5rem; }
.ct-demo-mock__bars i {
  flex: 1; background: linear-gradient(180deg, var(--ct-accent), rgba(20,184,166,0.4));
  border-radius: 3px 3px 0 0;
}
.ct-demo-mock__bars i:nth-child(1) { height: 45%; }
.ct-demo-mock__bars i:nth-child(2) { height: 70%; }
.ct-demo-mock__bars i:nth-child(3) { height: 55%; }
.ct-demo-mock__bars i:nth-child(4) { height: 85%; }
.ct-demo-mock__bars i:nth-child(5) { height: 60%; }

/* Footer accordion */
.ct-footer__cols { display: contents; }
  .ct-footer__group summary {
    cursor: default; list-style: none; font-size: 0.85rem;
    color: #fff; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  }
.ct-footer__group summary::-webkit-details-marker { display: none; }

.ct-carousel__dots {
  display: flex; justify-content: center; align-items: center;
  gap: 0.45rem; margin-top: 0.85rem;
}
.ct-carousel__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ct-border); border: none; padding: 0;
  cursor: pointer; transition: width 0.2s, background 0.2s;
}
.ct-carousel__dot.active {
  width: 22px; background: var(--ct-accent);
}

/* Interaktive Demo */
.ct-demo-section { padding-top: 4rem; padding-bottom: 4.5rem; }
.ct-demo {
  max-width: 680px; margin: 0 auto;
  background: #fff; border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius); box-shadow: var(--ct-shadow-lg);
  overflow: hidden;
}
.ct-demo__tabs {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  padding: 0.85rem; background: var(--ct-bg-soft);
  border-bottom: 1px solid var(--ct-border);
}
.ct-demo__tab {
  padding: 0.55rem 0.95rem; border-radius: 999px; border: 1px solid var(--ct-border);
  background: #fff; font: inherit; font-size: 0.85rem; font-weight: 600;
  color: var(--ct-muted); cursor: pointer; transition: 0.2s;
}
.ct-demo__tab:hover { border-color: var(--ct-accent); color: var(--ct-primary); }
.ct-demo__tab.active {
  background: var(--ct-primary); border-color: var(--ct-primary); color: #fff;
}
.ct-demo__screen { padding: 1.5rem 1.35rem; min-height: 220px; }
.ct-demo__header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; font-weight: 700; color: var(--ct-primary);
  margin-bottom: 1rem; padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--ct-border);
}
.ct-demo__time { color: var(--ct-accent); font-variant-numeric: tabular-nums; }
.ct-demo__status { margin: 0 0 0.85rem; font-size: 0.92rem; color: var(--ct-muted); }
.ct-demo__status--green { color: #059669; font-weight: 600; }
.ct-demo__status--amber { color: #d97706; font-weight: 600; }
.ct-demo__action {
  display: inline-block; padding: 0.65rem 1.1rem; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.85rem;
}
.ct-demo__action--green { background: #dcfce7; color: #166534; }
.ct-demo__action--amber { background: #fef3c7; color: #92400e; }
.ct-demo__action--blue { background: #dbeafe; color: #1e40af; }
.ct-demo__hint { margin: 0; font-size: 0.85rem; color: var(--ct-muted); }
.ct-demo__rows { margin-bottom: 0.85rem; }
.ct-demo__row {
  display: flex; justify-content: space-between; gap: 0.75rem;
  padding: 0.45rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--ct-bg-muted);
}
.ct-demo__row span { color: var(--ct-muted); }
.ct-demo__row b { color: var(--ct-primary); font-weight: 600; }
.ct-demo__rfid {
  text-align: center; padding: 1.25rem; margin-bottom: 0.85rem;
  background: var(--ct-bg-soft); border-radius: var(--ct-radius-sm);
}
.ct-demo__rfid span { display: inline-flex; width: 48px; height: 48px; color: var(--ct-accent); margin-bottom: 0.5rem; }
.ct-demo__rfid span svg { width: 32px; height: 32px; }
.ct-demo__rfid p { margin: 0 0 0.25rem; font-size: 0.82rem; color: var(--ct-muted); }
.ct-demo__rfid strong { font-size: 1.05rem; color: var(--ct-primary); }
.ct-demo__panel[hidden] { display: none; }

/* Desktop – Hero & Layout (min-width: 1024px) */
@media (min-width: 1024px) {
  body[data-ct-page="index"] .ct-hero {
    min-height: calc(100svh - var(--ct-nav-h));
    display: flex;
    align-items: center;
    padding: 1rem 0;
  }
  body[data-ct-page="index"] .ct-hero > .ct-container {
    width: min(100% - 2.5rem, var(--ct-max));
  }
  .ct-hero__eyebrow { margin-bottom: 0.75rem; font-size: 0.72rem; }
  .ct-hero h1 { font-size: clamp(1.75rem, 2.8vw, 2.5rem); }
  .ct-hero__lead { font-size: 0.98rem; margin-bottom: 1.15rem; }
  .ct-hero__visual { align-self: center; }
  .ct-device-scene {
    max-height: min(400px, calc(100svh - var(--ct-nav-h) - 2rem));
    transform: scale(0.92); transform-origin: center right;
  }
  .ct-laptop { transform: rotateY(-5deg) rotateX(1deg); }
  .ct-laptop__viewport { min-height: 260px; }
  .ct-app-ui { min-height: 260px; font-size: 0.58rem; }
  .ct-phone { width: 100px; right: 2%; bottom: 5%; }

  /* Preise: 3 Spalten nebeneinander */
  .ct-pricing-carousel .ct-carousel__viewport { overflow: visible; }
  .ct-pricing-carousel .ct-carousel__track {
    display: grid; grid-template-columns: repeat(3, 1fr);
    overflow: visible; gap: 1.15rem; padding: 0.5rem 0;
  }
  .ct-pricing-carousel .ct-carousel__slide {
    flex: none; width: auto; scroll-snap-align: none;
  }
  .ct-pricing-carousel .ct-carousel__arrow--pricing,
  .ct-pricing-carousel .ct-carousel__dots--pricing { display: none; }

  /* Footer Desktop */
  .ct-footer__top {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2rem;
  }
  .ct-footer__cols { display: contents; }
  .ct-footer__group { display: block; }
  .ct-footer__group summary { pointer-events: none; margin-bottom: 0.85rem; }
  .ct-footer__group[open] summary { margin-bottom: 0.85rem; }

  .ct-modules-carousel .ct-carousel__slide { flex: 0 0 calc(33.333% - 0.67rem); }
  .ct-carousel__arrow { display: flex; }
}

/* Tablet – Plattform & Footer */
@media (max-width: 1024px) {
  .ct-platform__block { grid-template-columns: 1fr; gap: 2rem; }
  .ct-platform__block--reverse { direction: ltr; }
  .ct-app-stats { grid-template-columns: repeat(2, 1fr); }
  .ct-app-grid { grid-template-columns: 1fr; }
  .ct-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile – max-width: 768px */
@media (max-width: 768px) {
  :root {
    --ct-nav-h: 56px;
    --ct-radius: 14px;
  }

  .ct-container { width: min(100% - 1.75rem, var(--ct-max)); }

  /* Kompakter Header */
  .ct-nav__brand { font-size: 1rem; gap: 0.5rem; }
  .ct-nav__brand img { width: 32px; height: 32px; }
  .ct-nav__toggle { font-size: 1.25rem; padding: 0.15rem; }
  .ct-nav__actions .ct-btn { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .ct-nav__links a { font-size: 0.9rem; }
  body[data-ct-page="index"] .ct-nav.open .ct-nav__links,
  body[data-ct-page="index"] .ct-nav.open .ct-nav__actions { background: #0a1628; }
  body[data-ct-page="index"] .ct-nav.open .ct-nav__links { border-bottom-color: rgba(255,255,255,0.08); }
  body[data-ct-page="index"] .ct-nav.open .ct-nav__links a { color: rgba(255,255,255,0.88); }

  /* Hero – Mockup max 45–50 % Viewport */
  .ct-hero { padding: 0.5rem 0 1.25rem; }
  .ct-hero__grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .ct-hero__visual {
    order: -1; max-width: 100%; margin: 0 auto;
    max-height: min(42vh, 360px);
  }
  .ct-hero__content { order: 0; text-align: center; }
  .ct-hero h1 { font-size: clamp(1.25rem, 5.2vw, 1.65rem); margin-bottom: 0.45rem; line-height: 1.15; }
  .ct-hero__lead { font-size: 0.82rem; margin-bottom: 0.75rem; line-height: 1.5; }
  .ct-hero__actions { gap: 0.45rem; margin-bottom: 0.75rem; justify-content: center; }
  .ct-hero__actions .ct-btn { width: 100%; padding: 0.68rem 1rem; font-size: 0.84rem; }
  .ct-hero__notes { justify-content: center; font-size: 0.68rem; gap: 0.15rem 0.6rem; }
  .ct-laptop { transform: none; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); }

  .ct-device-scene {
    max-width: 200px;
    max-height: min(40vh, 320px);
    margin: 0 auto -0.75rem;
    transform: scale(0.58);
    transform-origin: top center;
  }
  .ct-laptop__viewport { min-height: 170px; }
  .ct-app-ui { min-height: 170px; font-size: 0.48rem; }
  .ct-app-tiles { gap: 0.2rem; }
  .ct-app-tile strong { font-size: 0.65rem; }
  .ct-app-tile span { font-size: 0.42rem; }
  .ct-phone {
    width: 52px; right: 0; bottom: 4%;
    transform: rotate(4deg); z-index: 5;
  }
  .ct-phone__screen { min-height: 110px; }

  /* Branchen-Streifen */
  .ct-industries { padding: 0.85rem 0; }
  .ct-trust { padding: 1.75rem 0; }
  .ct-trust__item { font-size: 0.82rem; padding: 0.35rem; }
  .ct-trust__icon { width: 38px; height: 38px; margin-bottom: 0.5rem; }
  .ct-trust__icon svg { width: 18px; height: 18px; }
  .ct-industry-pill { font-size: 0.78rem; padding: 0.4rem 0.75rem; white-space: nowrap; }
  .ct-industries__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 0.5rem; -webkit-overflow-scrolling: touch; }

  /* Weniger vertikale Abstände */
  .ct-section { padding: 1.75rem 0; }
  .ct-modules-section, .ct-highlights, .ct-demo-section, .ct-onboarding, .ct-plan-send { padding: 1.75rem 0; }
  .ct-platform { padding: 2rem 0; }
  .ct-platform__intro { margin-bottom: 1.35rem; }
  .ct-platform__intro h2 { font-size: clamp(1.55rem, 5.5vw, 1.85rem); }
  .ct-platform__intro p { font-size: 0.95rem; }
  .ct-platform__block { gap: 1.25rem; margin-bottom: 1.75rem; }
  .ct-platform__block--dark { padding: 1.75rem 1rem; }
  .ct-platform__text h3 { font-size: 1.35rem; margin-bottom: 0.65rem; }
  .ct-platform__text p { font-size: 0.92rem; margin-bottom: 1rem; }
  .ct-mock-screen__body { min-height: 200px; padding: 0.85rem; }
  .ct-mock-float { display: none; }
  .ct-pricing-section { padding: 2rem 0; }
  .ct-cta { padding: 2rem 0; }
  .ct-cta h2 { font-size: clamp(1.45rem, 5vw, 1.75rem); }
  .ct-cta p { font-size: 0.95rem; margin-bottom: 1.35rem; }

  /* Headings & Karten – Premium */
  .ct-heading { margin-bottom: 1.35rem; }
  .ct-heading h2 { font-size: clamp(1.45rem, 5vw, 1.75rem); margin-bottom: 0.5rem; }
  .ct-heading p { font-size: 0.92rem; }
  .ct-card { padding: 1.35rem; border-radius: var(--ct-radius); }
  .ct-card h3 { font-size: 1rem; }
  .ct-card p { font-size: 0.88rem; }
  .ct-card__icon { width: 44px; height: 44px; margin-bottom: 0.85rem; }
  .ct-card__icon svg { width: 22px; height: 22px; }
  .ct-platform-mini { padding: 1.25rem; }
  .ct-step { padding: 0.75rem; }
  .ct-step__num { width: 48px; height: 48px; font-size: 1.15rem; margin-bottom: 0.85rem; }
  .ct-center { margin-top: 1.75rem; }

  /* Preise kompakt */
  .ct-pricing { gap: 0.85rem; }
  .ct-price-card {
    padding: 1.1rem 0.95rem;
    max-height: 560px; overflow: hidden;
  }
  .ct-price-card--popular {
    transform: none;
    padding: 1.25rem 1rem 1.15rem;
    box-shadow: 0 6px 24px rgba(20,184,166,0.12);
  }
  .ct-price-card__badge { font-size: 0.62rem; padding: 0.25rem 0.65rem; top: -10px; }
  .ct-price-card h3 { font-size: 1rem; }
  .ct-price-card__desc { display: none; }
  .ct-price-card__amount { margin: 0.65rem 0; }
  .ct-price-card__value { font-size: 1.75rem; }
  .ct-price-card__amount small { font-size: 0.78rem; }
  .ct-price-card__yearly { font-size: 0.75rem; }
  .ct-price-card__features { margin-bottom: 0.35rem; }
  .ct-price-card__features li { padding: 0.22rem 0; font-size: 0.78rem; }
  .ct-price-card__expand { font-size: 0.78rem; margin-bottom: 0.65rem; }
  .ct-price-card__cta { padding: 0.65rem 0.85rem; font-size: 0.85rem; }
  .ct-pricing-notes { margin-top: 1.15rem; font-size: 0.78rem; }
  .ct-pricing-hint { margin-bottom: 1.25rem; font-size: 0.82rem; }
  .ct-pricing-compare { margin-top: 1.5rem; }
  .ct-pricing-toggle { margin-bottom: 0.5rem; }
  .ct-pricing-toggle button { padding: 0.5rem 0.85rem; font-size: 0.82rem; }

  /* Module slider ~1.5–2 Karten */
  .ct-modules-carousel .ct-carousel__slide { flex: 0 0 calc(62% - 0.5rem); }
  .ct-module-card { padding: 0.9rem 0.8rem; }
  .ct-module-card h3 { font-size: 0.82rem; }
  .ct-highlights-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .ct-highlight-card { padding: 1rem; }
  .ct-highlight-card h3 { font-size: 0.9rem; }
  .ct-demo__layout { grid-template-columns: 1fr; }
  .ct-demo__mock { border-right: none; border-bottom: 1px solid var(--ct-border); min-height: 180px; padding: 1rem; }
  .ct-demo__info { padding: 1rem; }
  .ct-carousel__arrow--prev { left: 0.15rem; }
  .ct-carousel__arrow--next { right: 0.15rem; }

  /* Footer accordion */
  .ct-footer { padding: 1.5rem 0 1rem; }
  .ct-footer__top {
    display: block; gap: 0; margin-bottom: 1rem; padding-bottom: 1rem;
  }
  .ct-footer__brand { margin-bottom: 0.75rem; }
  .ct-footer__cols { display: flex; flex-direction: column; gap: 0; }
  .ct-footer__group {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .ct-footer__group summary {
    cursor: pointer; padding: 0.65rem 0; font-weight: 700;
    color: #fff; text-transform: uppercase; letter-spacing: 0.05em;
    font-size: 0.72rem;
  }
  .ct-footer__group ul { padding-bottom: 0.65rem; }
  .ct-pricing-carousel .ct-carousel__slide { flex: 0 0 min(300px, 92%); }
  .ct-demo { border-radius: 12px; }
  .ct-demo__tabs { padding: 0.65rem; gap: 0.3rem; overflow-x: auto; flex-wrap: nowrap; }
  .ct-demo__tab { flex-shrink: 0; padding: 0.45rem 0.75rem; font-size: 0.78rem; }
  .ct-btn { padding: 0.72rem 1.15rem; font-size: 0.88rem; border-radius: 10px; }
  .ct-card:hover, .ct-preview-card:hover, .ct-price-card:hover { transform: none; }

  /* Navigation mobil */
  .ct-grid--3, .ct-grid--4, .ct-steps, .ct-preview-grid { grid-template-columns: 1fr; }
  .ct-platform-cards { grid-template-columns: 1fr; gap: 1rem; }
  .ct-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .ct-cookie { bottom: 0.85rem; right: 0.85rem; left: 0.85rem; max-width: none; padding: 0.85rem; }
  .ct-nav__links, .ct-nav__actions { display: none; }
  .ct-nav__toggle { display: block; }
  .ct-nav.open .ct-nav__links {
    display: flex; flex-direction: column; position: absolute;
    top: var(--ct-nav-h); left: 0; right: 0;
    padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--ct-border);
    box-shadow: var(--ct-shadow-lg); gap: 0.5rem;
  }
  .ct-nav.open .ct-nav__actions {
    display: flex; flex-direction: column; position: absolute;
    top: calc(var(--ct-nav-h) + 240px); left: 1.25rem; right: 1.25rem;
  }
  .ct-nav.open .ct-nav__actions .ct-btn { width: 100%; }
  .ct-form__row { grid-template-columns: 1fr; }
  .ct-cta__actions { flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .ct-cta__actions .ct-btn { width: 100%; }
  .ct-page-hero { padding: 3rem 0 1.75rem; }
  .ct-page-hero h1 { font-size: clamp(1.55rem, 5.5vw, 1.85rem); }
  .ct-faq summary { padding: 0.95rem 0; font-size: 0.92rem; }
  .ct-faq p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .ct-hero { padding: 0.4rem 0 1rem; }
  .ct-hero__visual { max-height: min(38vh, 300px); }
  .ct-device-scene { max-width: 180px; transform: scale(0.52); margin-bottom: -0.5rem; }
  .ct-phone { width: 46px; }
  .ct-modules-carousel .ct-carousel__slide { flex: 0 0 calc(65% - 0.4rem); }
  .ct-section, .ct-platform, .ct-pricing-section, .ct-modules-section, .ct-demo-section { padding: 1.35rem 0; }
  .ct-price-card { max-height: 520px; }
  .ct-trust__grid { grid-template-columns: 1fr; }
  .ct-pricing-toggle { width: 100%; }
  .ct-pricing-toggle button { flex: 1; padding: 0.5rem 0.65rem; font-size: 0.82rem; }
  .ct-industries__label { display: none; }
}
