:root {
  --bg-main: #020618;
  --bg-card: #050b1f;
  --accent-blue: #00affb;
  --accent-purple: #a51cd3;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --border-card: #1f2937;
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);
}

/* Base Font Size */
html {
  font-size: 18px;
  scroll-behavior: smooth;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #051036 0%, #020618 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2,6,24,0.95), rgba(2,6,24,0.8));
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  width: 40px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.nav-brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-link-active {
  color: var(--accent-blue);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(0,175,251,0.8);
}

.btn-contact {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--white);
  box-shadow: 0 0 18px rgba(0,175,251,0.35);
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,175,251,0.5);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148,163,184,0.6);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-main);
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--accent-blue);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-blue), var(--accent-purple));
  box-shadow: 0 0 12px rgba(0,175,251,0.8);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.hero-title span.blue {
  color: var(--accent-blue);
  text-shadow: 0 0 22px rgba(0,175,251,0.7);
}

.hero-subtitle {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--white);
  box-shadow: 0 0 24px rgba(0,175,251,0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,175,251,0.8);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(148,163,184,0.5);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 16px rgba(0,175,251,0.3);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Logo */
.hero-logo-wrap {
  position: relative;
  justify-self: center;
}

.hero-logo-circle {
  width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,175,251,0.25), transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 90px rgba(0,175,251,0.45);
}

.hero-logo {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(0,175,251,0.9));
}

.hero-orbit {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px dashed rgba(148,163,184,0.3);
  opacity: 0.6;
}

/* Desktop Hero Logo größer */
@media (min-width: 1024px) {
  .hero-logo-circle {
    width: 620px;
  }

  .hero-logo {
    width: 420px;
  }
}

/* ============================================================
   SECTION DIVIDER - LOGO STRIP
   ============================================================ */

.section-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  height: 260px;
  margin-top: -40px;
  margin-bottom: -40px;
  background: #000000;
  z-index: 0;
  overflow: hidden;
}

.section-divider-spacing {
  height: 180px;
}

.section-divider-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.logos-strip {
  width: 150%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 160px;
  align-items: center;
  animation: logos-marquee 38s linear infinite;
}

.logos-track img {
  height: 240px;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.65))
          drop-shadow(0 0 22px rgba(0, 200, 255, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.9))
          drop-shadow(0 0 35px rgba(0, 200, 255, 0.6));
}

@keyframes logos-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* ============================================================
   SECTIONS - GENERAL STYLES
   ============================================================ */

section {
  padding: 2.2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  color: var(--accent-blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 32rem;
  margin: 0.2rem auto 0;
}

/* ============================================================
   SERVICE TABS (für Leistungsseite)
   ============================================================ */

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.service-tab {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.55);
  background: transparent;
  color: var(--text-muted);
  padding: 0.35rem 0.95rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.service-tab:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 16px rgba(0,175,251,0.55);
  color: var(--white);
  transform: translateY(-1px);
}

.service-tab.active {
  background: radial-gradient(circle at top left,
    rgba(0,175,251,0.95),
    rgba(165,28,211,0.95)
  );
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(0,175,251,0.8);
}

/* ============================================================
   GRID SYSTEM
   ============================================================ */

.grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   CARDS - GENERAL
   ============================================================ */

.card {
  background: radial-gradient(circle at top left, rgba(0,175,251,0.12), rgba(5,11,31,0.96));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.card:hover {
  border-color: rgba(0,175,251,0.85);
  box-shadow: 0 0 22px rgba(0,175,251,0.45);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-blue);
}

.card-title {
  font-weight: 600;
  font-size: 1rem;
}

.card-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.card-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-main);
  padding-left: 0;
  display: grid;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.card-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent-purple);
}

/* ============================================================
   PACKAGE CARDS (Service-Pakete)
   ============================================================ */

.package-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: all 0.25s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);
}

.package-image {
  height: 140px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #020617;
  position: relative;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  background: var(--accent-purple);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.package-content {
  padding: 1.3rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.package-title {
  font-weight: 700;
  font-size: 1rem;
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 2.6rem;
}

.package-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #7dd3fc;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid rgba(125,211,252,0.9);
  text-shadow: 0 0 12px rgba(125,211,252,0.7);
}

.package-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.package-features {
  font-size: 0.85rem;
  color: var(--text-main);
  list-style: none;
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
  display: grid;
  gap: 0.25rem;
}

.package-features li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--accent-purple);
}

.package-footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

.pricing-note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.pricing-note strong {
  color: var(--text-main);
}

/* ============================================================
   ABLAUF (Steps)
   ============================================================ */

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  background: rgba(15,23,42,0.9);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  padding: 1rem;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.step:hover {
  border-color: rgba(0,175,251,0.5);
  box-shadow: 0 0 18px rgba(0,175,251,0.25);
  transform: translateY(-2px);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.step p {
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-item {
  border-bottom: 1px solid rgba(31,41,55,0.9);
  padding: 0.75rem 0;
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.faq-a {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Accordion (für separate FAQ-Seite) */
.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-accordion-item {
  background: rgba(15,23,42,0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31,41,55,0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(0,175,251,0.9);
  box-shadow: 0 0 26px rgba(0,175,251,0.45);
  transform: translateY(-2px);
}

.faq-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-main);
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-accordion-trigger:hover {
  color: var(--accent-blue);
}

.faq-accordion-question {
  flex: 1;
  padding-right: 0.75rem;
}

.faq-accordion-icon {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.faq-accordion-body {
  padding: 0 1.2rem 0.95rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(31,41,55,0.9);
  display: none;
  line-height: 1.6;
}

.faq-accordion-body p + p {
  margin-top: 0.45rem;
}

.faq-accordion-body ul {
  margin: 0.4rem 0 0.4rem 1.1rem;
  padding-left: 0;
}

.faq-accordion-body li {
  margin-bottom: 0.25rem;
}

.faq-accordion-item.is-open {
  background: radial-gradient(circle at top left, rgba(0,175,251,0.14), rgba(5,11,31,0.98));
  border-color: rgba(0,175,251,0.9);
}

.faq-accordion-item.is-open .faq-accordion-icon {
  transform: rotate(180deg);
}

/* ============================================================
   SUPPORT / KONTAKT / ÜBER MICH BOXES
   ============================================================ */

.support-box,
.contact-box,
.about-box {
  background: rgba(15,23,42,0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.support-list {
  list-style: none;
  margin: 0.6rem 0 0.9rem;
  display: grid;
  gap: 0.25rem;
}

.support-list li::before {
  content: "→";
  margin-right: 0.4rem;
  color: var(--accent-blue);
}

/* ============================================================
   FORMS
   ============================================================ */

form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(30,64,175,0.8);
  background: rgba(15,23,42,0.85);
  color: var(--text-main);
  font-size: 0.85rem;
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(0,175,251,0.3);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */

.about-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: flex-start;  /* GEÄNDERT von stretch zu flex-start */
  }
}

.about-box ul {
  list-style: none;
  font-size: 0.86rem;
  margin-top: 0.6rem;
  display: grid;
  gap: 0.25rem;
}

.about-box ul li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--accent-blue);
}

.about-photo-box {
  display: flex;
  align-items: flex-start;  /* GEÄNDERT von center zu flex-start */
  justify-content: center;
  padding: 1rem;
  max-height: 450px;  /* NEU HINZUGEFÜGT */
}

.about-photo {
  width: 100%;
  max-width: 280px;  /* GEÄNDERT von 320px zu 280px */
  max-height: 400px;  /* NEU HINZUGEFÜGT */
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(0,175,251,0.35);
  object-fit: cover;  /* Bleibt cover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(0,175,251,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid rgba(30,64,175,0.7);
  padding: 1.3rem 0 1.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */

.mobile-call-bar {
  display: none;
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 767px) {
  
  /* Mobile Navigation */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: rgba(2,6,24,0.98);
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 0.7rem 1.2rem 1rem;
    gap: 0.7rem;
    border-left: 1px solid rgba(148,163,184,0.25);
    border-bottom: 1px solid rgba(148,163,184,0.25);
    display: none;
    min-width: 180px;
  }

  header.nav-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Mobile Hero */
  .hero {
    min-height: 100vh;
    padding: 1.6rem 0 2.8rem;
    display: block;
    overflow: visible;
  }

  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-logo-wrap {
    margin-top: 0.5rem;
  }

  .hero-logo-circle {
    width: 260px;
    height: 260px;
  }

  .hero-logo {
    width: 220px;
  }

  /* Mobile Hero Actions */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-primary {
    display: none;
  }

  .remote-btn {
    display: none !important;
  }

  /* Hide logo strip on mobile */
  .section-divider,
  .section-divider-spacing {
    display: none !important;
  }

  /* Mobile Call Bar */
  .mobile-call-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1.2rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    background: #0369a1;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: transform 0.2s ease;
  }

  .mobile-call-bar:active {
    transform: scale(0.98);
  }

  main {
    padding-bottom: 4rem;
  }
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 2rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

