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

:root {
  --bg: #0f172a;
  --primary: #2563eb;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --radius-lg: 1.5rem;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.5;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Header */
.topbar {
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: saturate(150%) blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.logo a {
  color: #0f172a; /* tiefes Schwarzgrau */
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
}

.logo a:hover,
.logo a:focus {
  color: #0f172a;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  font-size: 0.95rem;
}

.actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* Buttons */
.btn,
.btn-secondary {
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 0.55rem 1.1rem;
}

.btn:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.55rem 1.1rem;
}

.btn-small {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top, #ffffff 0, #e2e8f0 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin: 0.7rem 0;
  line-height: 1.05;
}

.subtext {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.4rem;
}

.label {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.label-green {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15); /* weiches Grün */
  color: #16a34a; /* kräftiges Grün */
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.label-yellow {
  display: inline-block;
  background: rgba(250, 204, 21, 0.25); /* weiches Gelb */
  color: #ca8a04; /* kräftiges Senfgelb */
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.social-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Mockup im Hero */
.hero-media .mockup {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.mockup-header {
  background: #0f172a;
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mockup-title {
  margin-left: auto;
  font-size: 0.75rem;
  opacity: 0.7;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(248, 250, 252, 0.2);
  border-radius: 999px;
}

.mockup-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mockup-row {
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.9rem;
  padding: 0.7rem 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.23rem 0.6rem;
  border-radius: 999px;
  color: #fff;
}

.badge.green { background: #22c55e; }
.badge.yellow { background: #f97316; }
.badge.blue { background: #0ea5e9; }

.tag {
  background: rgba(148, 163, 184, 0.1);
  border-radius: 999px;
  padding: 0.23rem 0.6rem;
  font-size: 0.6rem;
  color: #0f172a;
}

/* Plattform Abschnitt */
.pain {
  padding: 3.5rem 0 3rem;
}

.pain h2,
.features h2,
.social h2,
.cta h2 {
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-text {
  text-align: center;
  margin-bottom: 2.4rem;
  color: var(--muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.03);
  text-align: center;
}

.card h3 {
  margin-top: 0.4rem;
}

/* Use Cases */
.features {
  padding: 3.5rem 0 3.3rem;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
}

/* kleine Icons */
.icon-small {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.icon-medium {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Sicherheit */
.social {
  padding: 3.3rem 0 3.3rem;
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.stats {
  display: flex;
  gap: 1rem;
}

.stat {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  min-width: 120px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

/* CTA dunkel */
.cta {
  padding: 3rem 0 3rem;
  background: #0f172a;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Engagement Block */
.engagement {
  background: transparent;
  background-color: #fff;
  margin: 4rem auto;
}

.engagement .container {
  padding: 0 1.2rem;
}

.engagement-inner {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  align-items: center;
}

.engagement-text {
  flex: 1 1 50%;
}

.engagement-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.engagement-text p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.engagement-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.engagement-media {
  flex: 1 1 40%;
  text-align: right;
  position: relative;
}

.engagement-media img {
  width: 100%;
  max-width: 360px;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 12px 24px rgba(15,23,42,0.08);
  position: relative;
  right: -20px;
  top: 10px;
  transition: transform 0.3s ease;
}

.engagement-media img:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
  padding: 1.3rem 0 1.3rem;
  background: #0f172a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.8rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .social-inner,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    flex-wrap: wrap;
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 1.2rem;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transform: translateY(-150%);
    transition: 0.3s;
  }

  .nav a {
    padding: 0.7rem 1.1rem;
  }

  .nav.nav-open {
    transform: translateY(0%);
  }

  .mobile-toggle {
    display: block;
  }

  .actions {
    display: none;
  }

  .engagement-inner {
    flex-direction: column;
    text-align: center;
  }

  .engagement-media {
    text-align: center;
  }

  .engagement-media img {
    right: 0;
    top: 0;
  }
}


.visual {
  background: #f4f6f8;
  padding: 3.5rem 0 3.5rem;
}

.visual-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.visual-media {
  flex: 0 0 52%;
}

.visual-img {
  width: 100%;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.visual-text {
  flex: 1;
}

.visual-text h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.visual-text p {
  color: #4b5563;
  margin-bottom: 1.4rem;
  max-width: 28rem;
}

.visual-shape {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 70px;
  height: 70px;
  background: #42c5d5;
  border-radius: 1.3rem;
  opacity: 0.8;
}

/* mobil */
@media (max-width: 960px) {
  .visual-inner {
    flex-direction: column;
  }
  .visual-media,
  .visual-text {
    flex: 1 1 auto;
  }
  .visual-text {
    text-align: center;
  }
  .visual-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .visual-shape {
    display: none;
  }
}

.security {
  background: #ffffff;
  padding: 4rem 2rem;
}

.security-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.security-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.security-header p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.security-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.security-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.security-card h3 {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.security-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

@media (max-width: 640px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

.integrations {
  background: #f8fafc;
  padding: 3.5rem 0 3.5rem;
}

.integrations h2 {
  text-align: center;
  margin-bottom: 0.6rem;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

.integration-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.integration-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.9rem;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.integration-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.integration-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.integrations-link {
  text-align: center;
  margin-top: 2rem;
}

.integrations .link {
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}








/* Unterseiten Use Cases */

.uc-hero {
  background: #f8fafc;
  padding: 3.5rem 0 3rem;
}

.uc-hero-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.uc-hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin-bottom: 0.7rem;
}

.uc-subtext {
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.1rem;
}

.uc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem 0;
}

.uc-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #111827;
}

.uc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

.uc-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.uc-hero-media img {
  max-width: 520px;
  border-radius: 1rem;
  display: block;
}

.uc-content {
  padding: 3.5rem 0 3.2rem;
}


.uc-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uc-links li {
  margin-bottom: 0.5rem;
}

.uc-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.uc-links a:hover {
  color: #1e40af;
  text-decoration: underline;
}


.uc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: 2rem;
  align-items: flex-start;
}

.uc-main h2,
.uc-main h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.uc-main p {
  margin-bottom: 1rem;
  color: #475569;
}

.uc-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.uc-box {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.uc-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uc-meta li {
  margin-bottom: 0.4rem;
  color: #475569;
}

.uc-form {
  background: #f8fafc;
  padding: 3.5rem 0 3.5rem;
}

.uc-form-inner {
  display: grid;
  grid-template-columns: 0.75fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.uc-form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.5rem 1.3rem;
  display: grid;
  gap: 1rem;
}

.uc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.uc-form-field label {
  font-weight: 500;
  font-size: 0.85rem;
}

.uc-form-field input,
.uc-form-field textarea {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.6rem;
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .uc-hero-inner {
    flex-direction: column;
  }
  .uc-grid {
    grid-template-columns: 1fr;
  }
  .uc-form-inner {
    grid-template-columns: 1fr;
  }
  .uc-actions {
    flex-wrap: wrap;
  }
}


.uc-hero {
  background: #f8fafc;
  padding: 3.5rem 0 3rem;
}

.uc-hero-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.uc-hero-text {
  flex: 1;
  max-width: 540px;
}

.uc-hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
}

.uc-hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.uc-subtext {
  color: #4b5563;
  margin-bottom: 1rem;
}

.uc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.uc-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: #111827;
}

.uc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

.uc-hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.uc-hero-image {
  max-width: 620px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

@media (max-width: 960px) {
  .uc-hero-inner {
    flex-direction: column;
  }
  .uc-hero-media {
    order: -1;
  }
  .uc-hero-image {
    max-width: 100%;
  }
}



/* Kontaktformular auf Use CAse Seite */

.uc-form {
  background: #f8fafc;
  padding: 4rem 0;
}

.uc-form h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
}

.uc-form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  padding: 2rem 2rem 2.5rem;
  max-width: 840px;
  margin: 0 auto;
}

.uc-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 1.2rem;
}

.uc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.uc-form-field.full {
  grid-column: 1 / -1;
}

.uc-form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}

.uc-form-field .required {
  color: #ef4444;
  margin-left: 0.2rem;
}

.uc-form-field input,
.uc-form-field select,
.uc-form-field textarea {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  background: #fff;
  color: #111827;
}

.uc-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.phone-wrapper {
  display: flex;
  gap: 0.6rem;
}

.phone-wrapper select {
  flex: 1 1 50%;
}

.phone-wrapper input {
  flex: 1 1 50%;
}

.uc-form-hint {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.uc-form-hint a {
  color: #2563eb;
  text-decoration: underline;
}

.uc-form-card button.btn {
  display: block;
  margin-top: 1.8rem;
  width: fit-content;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  background: #2563eb;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.uc-form-card button.btn:hover {
  background: #1d4ed8;
}

@media (max-width: 640px) {
  .uc-form-card {
    padding: 1.5rem;
  }
}



/* Checklisten für Preis- und Leistungsabschnitte */
.checked-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checked-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}
.checked-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Split-Abschnitte wie im GPU-Teil der Preise */
.split {
  padding: 3.5rem 0;
  background: #fff;
}
.split-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.split-text {
  flex: 1 1 0;
}
.split-media {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}
.split .section-img {
  width: 100%;
  max-width: 520px;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
@media (max-width: 920px) {
  .split-inner {
    flex-direction: column;
  }
}

/* kleine Karte im Hero der Preis-Seite */
.hero-media-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  max-width: 320px;
}


    .model-filter {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .model-filter button {
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: #fff;
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      font-family: inherit;
      font-size: 0.85rem;
      cursor: pointer;
      color: #0f172a;
      transition: 0.15s ease-in-out;
    }
    .model-filter button.is-active {
      background: #2563eb;
      border-color: #2563eb;
      color: #fff;
    }
    .feature-grid.models {
      margin-top: 1.5rem;
    }