:root {
  --bg: #f3f2ec;
  --bg-soft: #faf9f4;
  --surface: #ffffff;
  --surface-strong: #f7f7f2;
  --ink: #111111;
  --ink-soft: #5f635f;
  --line: rgba(17, 17, 17, 0.08);
  --accent-lime: #c8ff3d;
  --accent-teal: #63e6d3;
  --accent-coral: #ff8d5f;
  --shadow-lg: 0 28px 60px rgba(17, 17, 17, 0.14);
  --shadow-md: 0 18px 38px rgba(17, 17, 17, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 88px;
  background:
          radial-gradient(circle at top right, rgba(99, 230, 211, 0.14), transparent 22%),
          radial-gradient(circle at 0% 20%, rgba(200, 255, 61, 0.12), transparent 22%),
          var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  font-weight: 700;
}

p {
  color: var(--ink-soft);
}

a {
  color: inherit;
}

.container {
  width: min(92%, var(--container));
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 1500;
}

.site-nav {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-img {
  display: block;
  width: 198px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0 auto;
}

.nav-links li {
  margin: 0;
}

.nav-links a,
.sidenav li > a {
  font-weight: 700;
}

.nav-links a {
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  background: var(--accent-lime);
  color: #0a0a0a;
}

.nav-links .nav-cta:hover {
  background: #d6ff67;
}

.nav-cart-link {
  display: inline-flex;
  align-items: center;
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cart-count-badge.has-items {
  background: var(--accent-teal);
  color: #08231e;
}

.sidenav-trigger {
  color: #ffffff;
}

.sidenav {
  background: #111111;
}

.sidenav li > a {
  color: #ffffff;
}

.hero-section {
  padding: 56px 0 28px;
}

.hero-row {
  align-items: center;
  margin-bottom: 0;
}

.hero-copy {
  max-width: 560px;
}

.hero-kicker,
.section-kicker,
.summary-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-kicker {
  background: rgba(200, 255, 61, 0.18);
  color: #3a4800;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.hero-copy h1 span {
  color: #ffffff;
  background: linear-gradient(135deg, #1f1f1f, #393939);
  padding: 2px 10px 8px;
  border-radius: 18px;
  display: inline-block;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge,
.summary-pill,
.payment-chip,
.perk-pill,
.price-badge,
.class-badge,
.visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.hero-badge {
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
          linear-gradient(180deg, #0d0d0d, #171717),
          #111111;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.route-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.route-glow-one {
  top: -38px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: rgba(200, 255, 61, 0.18);
}

.route-glow-two {
  bottom: -40px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: rgba(99, 230, 211, 0.16);
}

.search-panel,
.hero-visual-board {
  position: relative;
  z-index: 1;
}

.search-panel {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-lime);
  margin-bottom: 14px;
}

.search-panel h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
}

.search-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.search-field {
  margin-bottom: 18px;
}

.search-field .prefix {
  color: rgba(255, 255, 255, 0.56);
}

.search-field input[type="text"] {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
}

.search-field input[type="text"]:focus {
  border-bottom: 1px solid var(--accent-lime) !important;
}

.search-field label {
  color: rgba(255, 255, 255, 0.58);
}

.search-field input[type="text"]:focus + label {
  color: var(--accent-lime) !important;
}

.btn,
.btn-large,
.btn-small,
.btn-flat {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
  border-radius: 999px;
}

.btn-search,
.btn-card {
  background: var(--accent-lime);
  color: #0a0a0a;
  box-shadow: 0 16px 30px rgba(200, 255, 61, 0.18);
}

.btn-search:hover,
.btn-search:focus,
.btn-card:hover,
.btn-card:focus {
  background: #d6ff67;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-search-chip {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.quick-search-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-visual-board {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.visual-card {
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
}

.visual-card.accent {
  background: linear-gradient(135deg, var(--accent-teal), #9af7ea);
}

.visual-card.dark {
  background: #1f1f1f;
  color: #ffffff;
}

.visual-card.dark p,
.visual-card.dark .visual-tag {
  color: rgba(255, 255, 255, 0.8);
}

.visual-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.visual-card p {
  margin: 0;
  color: var(--ink-soft);
}

.visual-tag {
  margin-bottom: 10px;
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
}

.visual-card.dark .visual-tag {
  background: rgba(255, 255, 255, 0.08);
}

.compare-section,
.benefits-section,
.how-section,
.contact-section {
  padding: 38px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-kicker {
  background: #111111;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-kicker.alt {
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
}

.section-head h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.surface-panel,
.benefit-card,
.timeline-card,
.package-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.empty-state,
.filter-shell,
.results-summary,
.contact-panel {
  padding: 28px;
}

.empty-state {
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: rgba(200, 255, 61, 0.22);
  color: #2d3600;
}

.is-hidden {
  display: none;
}

.filter-shell {
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f8f3);
}

.filter-row {
  margin-bottom: 4px;
}

.filter-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.filter-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.reset-filters {
  color: var(--ink);
  font-weight: 800;
}

.dropdown-content li > a,
.dropdown-content li > span {
  color: var(--ink);
}

.results-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.summary-copy h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.summary-kicker {
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
  margin-bottom: 10px;
}

.summary-side {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-pill {
  background: rgba(99, 230, 211, 0.16);
  color: #14453d;
}

.package-results {
  margin-bottom: 0;
}

.package-card {
  height: 100%;
  padding: 22px;
}

.card-top,
.price-row,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-badge {
  background: rgba(200, 255, 61, 0.24);
  color: #334000;
  font-size: 0.78rem;
}

.class-badge {
  background: rgba(17, 17, 17, 0.07);
  color: var(--ink);
  font-size: 0.78rem;
}

.package-name {
  margin: 18px 0 6px;
  font-size: 1.6rem;
}

.school-name {
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 800;
}

.package-summary {
  min-height: 72px;
  margin-bottom: 16px;
}

.package-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.package-meta span,
.payment-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.price-row {
  align-items: flex-end;
  padding: 18px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-main span,
.price-side span {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.price-main strong,
.price-side strong {
  display: block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.9rem;
  color: var(--ink);
}

.price-side {
  text-align: right;
}

.price-side small {
  color: var(--ink-soft);
}

.perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-link {
  color: var(--ink);
  font-weight: 800;
}

.perk-pill {
  background: rgba(17, 17, 17, 0.05);
  color: var(--ink);
  font-size: 0.8rem;
}

.card-bottom {
  align-items: center;
  margin-top: auto;
}

.payment-note {
  font-size: 0.9rem;
}

.no-results-card {
  padding: 30px;
  text-align: center;
}

.checkout-main {
  padding-bottom: 12px;
}

.checkout-hero {
  padding: 52px 0 18px;
}

.checkout-hero-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
          radial-gradient(circle at top right, rgba(200, 255, 61, 0.18), transparent 24%),
          radial-gradient(circle at bottom left, rgba(99, 230, 211, 0.18), transparent 24%),
          linear-gradient(135deg, #0e0e0e, #1a1a1a);
  box-shadow: var(--shadow-lg);
}

.checkout-hero-copy {
  max-width: 620px;
}

.checkout-hero-copy .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-lime);
}

.checkout-hero-copy h1 {
  margin: 14px 0 12px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.checkout-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.checkout-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 420px;
}

.checkout-hero-points .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.checkout-section {
  padding: 18px 0 38px;
}

.checkout-row {
  margin-bottom: 0;
}

.cart-stage,
.order-panel {
  height: 100%;
  padding: 28px;
}

.cart-stage-head,
.order-panel-head {
  margin-bottom: 22px;
}

.cart-stage-head h2,
.order-panel-head h2 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

#cart-items,
.single-package-slot,
.cart-summary-block {
  display: grid;
  gap: 16px;
}

.single-package-slot .package-card {
  position: relative;
  display: grid;
  gap: 22px;
  height: auto;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f9f9f4);
}

.single-package-slot .package-card::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(99, 230, 211, 0.12);
  pointer-events: none;
}

.package-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.package-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 255, 61, 0.18);
  color: #334000;
  font-size: 0.82rem;
  font-weight: 800;
}

.package-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
}

.package-school {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.package-school li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  color: var(--ink);
  font-weight: 800;
}

.package-price-box {
  position: relative;
  z-index: 1;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.price-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-value {
  display: block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
}

.price-note {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.5;
}

.package-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.package-section h3 {
  margin: 0;
  font-size: 1.1rem;
}

.package-description {
  margin: 0;
  line-height: 1.7;
}

.benefit-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(99, 230, 211, 0.16);
  color: #14453d;
  font-weight: 800;
}

.package-breakdown {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-breakdown li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.detail-count {
  flex-shrink: 0;
  min-width: 58px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(200, 255, 61, 0.18);
  color: #334000;
  font-weight: 800;
  text-align: center;
}

.detail-label {
  color: var(--ink);
  font-weight: 700;
}

.package-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.package-card-footer .package-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.delete-package-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 141, 95, 0.14);
  color: #8d4f35;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.delete-package-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 141, 95, 0.22);
}

.empty-cart-state {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8f8f3);
  border: 1px dashed rgba(17, 17, 17, 0.14);
}

.empty-cart-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(200, 255, 61, 0.22);
  color: #334000;
}

.empty-cart-state h3 {
  margin: 0;
  font-size: 1.7rem;
}

.empty-cart-copy p {
  max-width: 620px;
  margin: 0;
}

.cart-item {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9f9f4);
  border: 1px solid var(--line);
}

.cart-item-head,
.cart-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-title {
  margin: 12px 0 6px;
  font-size: 1.55rem;
}

.cart-item-school {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cart-remove:hover {
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.1);
}

.cart-item-meta,
.cart-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-item-meta {
  margin: 18px 0 14px;
}

.cart-item-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.cart-perks {
  margin-bottom: 18px;
}

.cart-price-row {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-price-box span,
.cart-price-box small {
  display: block;
  color: var(--ink-soft);
}

.cart-price-box strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.8rem;
  color: var(--ink);
}

.cart-price-box.align-right {
  text-align: right;
}

.cart-trust-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #111111;
}

.cart-trust-copy h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.45rem;
}

.cart-trust-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cart-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cart-empty-state {
  padding: 18px 8px 8px;
  text-align: center;
}

.cart-empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.cart-empty-state p {
  max-width: 620px;
  margin: 0 auto 18px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.payment-method-grid-single {
  grid-template-columns: 1fr;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-method i {
  font-size: 28px;
}

.payment-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.payment-method.is-active {
  border-color: rgba(99, 230, 211, 0.9);
  background: linear-gradient(180deg, #ffffff, #eefefa);
  box-shadow: 0 16px 30px rgba(99, 230, 211, 0.18);
}

.payment-method-static {
  cursor: default;
}

.payment-method-static:hover {
  transform: none;
}

.method-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.method-title {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.method-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-summary-block {
  margin-bottom: 20px;
}

.summary-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: #111111;
  color: #ffffff;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.summary-value {
  font-weight: 800;
  text-align: right;
}

.summary-total {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-total .summary-value {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.55rem;
}

.summary-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.summary-total-card {
  padding: 22px;
  border-radius: 24px;
  margin-bottom: 18px;
  background: #111111;
  color: #ffffff;
}

.summary-total-card span,
.summary-total-card small {
  color: rgba(255, 255, 255, 0.72);
}

.summary-total-card strong {
  display: block;
  margin: 8px 0 6px;
  color: #ffffff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 2.2rem;
}

.summary-total-card-empty {
  background: linear-gradient(135deg, #161616, #2a2a2a);
}

.order-lines {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.order-line strong {
  color: var(--ink);
}

.checkout-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.checkout-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.checkout-form .input-field {
  margin-bottom: 10px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"] {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16) !important;
  box-shadow: none !important;
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="email"]:focus {
  border-bottom: 1px solid var(--accent-teal) !important;
}

.checkout-form label {
  color: var(--ink-soft);
}

.checkout-form input[type="text"]:focus + label,
.checkout-form input[type="email"]:focus + label {
  color: var(--ink) !important;
}

.btn-checkout {
  background: var(--accent-lime);
  color: #0a0a0a;
  box-shadow: 0 16px 30px rgba(200, 255, 61, 0.18);
}

.btn-checkout:hover,
.btn-checkout:focus {
  background: #d6ff67;
}

.btn-checkout:disabled,
.btn-checkout.disabled {
  background: #d5d6cf !important;
  color: rgba(10, 10, 10, 0.46) !important;
  box-shadow: none;
  cursor: not-allowed;
}

.full-width {
  width: 100%;
}

.checkout-disclaimer {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.kasse-main {
  padding-bottom: 24px;
}

.kasse-hero {
  padding: 52px 0 18px;
}

.kasse-hero-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
          radial-gradient(circle at top right, rgba(200, 255, 61, 0.18), transparent 24%),
          radial-gradient(circle at bottom left, rgba(99, 230, 211, 0.18), transparent 24%),
          linear-gradient(135deg, #0e0e0e, #1a1a1a);
  box-shadow: var(--shadow-lg);
}

.kasse-hero-copy {
  max-width: 640px;
}

.kasse-hero-copy .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-lime);
}

.kasse-hero-copy h1 {
  margin: 14px 0 12px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.kasse-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.kasse-section {
  padding: 18px 0 38px;
}

.checkout-stage-grid {
  margin-bottom: 0;
}

.kasse-form-panel,
.kasse-summary-panel {
  height: 100%;
  padding: 28px;
}

.checkout-customer-form .input-field {
  margin-bottom: 10px;
}

.checkout-customer-form input[type="text"],
.checkout-customer-form input[type="email"],
.checkout-customer-form input[type="tel"] {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16) !important;
  box-shadow: none !important;
}

.checkout-customer-form input[type="text"]:focus,
.checkout-customer-form input[type="email"]:focus,
.checkout-customer-form input[type="tel"]:focus {
  border-bottom: 1px solid var(--accent-teal) !important;
}

.checkout-customer-form label {
  color: var(--ink-soft);
}

.checkout-customer-form input[type="text"]:focus + label,
.checkout-customer-form input[type="email"]:focus + label,
.checkout-customer-form input[type="tel"]:focus + label {
  color: var(--ink) !important;
}

.checkout-consent-card {
  display: grid;
  gap: 12px;
  margin: 10px 0 20px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8f8f3);
  border: 1px solid var(--line);
}

.checkout-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.6;
}

.checkout-consent-row a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.checkout-consent-row input[type="checkbox"] {
  margin-top: 3px;
}

.checkout-summary-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.checkout-summary-stack:last-child {
  margin-bottom: 0;
}

.checkout-selected-method-card,
.checkout-order-card,
.checkout-package-mini {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9f9f4);
  border: 1px solid var(--line);
}

.checkout-selected-method-card h3,
.checkout-package-mini-title {
  margin: 10px 0 8px;
  font-size: 1.5rem;
}

.checkout-selected-method-card p,
.checkout-package-mini-school {
  margin: 0;
}

.checkout-package-mini-school {
  color: var(--ink);
  font-weight: 800;
}

.checkout-package-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.checkout-package-mini-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.checkout-breakdown-list {
  margin: 0;
}

.checkout-access-blocked {
  padding: 36px 28px;
  text-align: center;
}

.checkout-access-blocked h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.checkout-access-blocked p {
  max-width: 720px;
  margin: 0 auto 22px;
  line-height: 1.75;
}

.status-page {
  min-height: 100vh;
  padding: 56px 0;
}

.status-shell {
  padding: 24px 0;
}

.status-card {
  padding: 36px 30px;
  text-align: center;
}

.status-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.status-card p {
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.75;
}

.benefit-card {
  display: block;
  height: 100%;
  padding: 22px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.benefit-icon,
.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  margin-bottom: 16px;
}

.benefit-icon {
  background: rgba(17, 17, 17, 0.08);
  color: var(--ink);
}

.benefit-card h3,
.timeline-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.timeline-shell {
  display: grid;
  gap: 16px;
}

.timeline-card {
  display: block;
  height: 100%;
  padding: 22px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.timeline-number {
  background: rgba(99, 230, 211, 0.18);
  color: #12483f;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #111111;
  box-shadow: var(--shadow-lg);
}

.payment-copy h3,
.payment-copy p {
  color: #ffffff;
}

.payment-copy h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.payment-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.payment-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.payment-strip .payment-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-copy {
  max-width: 700px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-link {
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 0 0 30px;
}

.footer-shell {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #0f0f0f;
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: 192px;
  height: auto;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-payment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.toast-alert {
  background: #111111;
}

.toast-link {
  margin-left: 12px;
  color: var(--accent-lime);
  font-weight: 800;
}

@media only screen and (max-width: 992px) {
  body {
    padding-top: 80px;
  }

  .navbar-fixed {
    height: 80px;
  }

  .nav-shell {
    min-height: 80px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-panel {
    margin-top: 24px;
  }

  .checkout-hero-shell,
  .kasse-hero-shell,
  .cart-trust-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-hero-points,
  .cart-trust-pills {
    justify-content: flex-start;
    max-width: none;
  }

  .package-card-head,
  .package-card-footer,
  .results-summary,
  .payment-strip,
  .contact-panel,
  .footer-brand,
  .footer-meta,
  .filter-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-price-box {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }

  .payment-chips,
  .contact-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 600px) {
  body {
    padding-top: 76px;
  }

  .navbar-fixed {
    height: 76px;
  }

  .container {
    width: min(94%, var(--container));
  }

  .brand-logo-img,
  .footer-logo {
    width: 164px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .hero-panel,
  .checkout-hero-shell,
  .kasse-hero-shell,
  .empty-state,
  .filter-shell,
  .results-summary,
  .contact-panel,
  .payment-strip,
  .footer-shell,
  .cart-stage,
  .order-panel,
  .cart-item,
  .summary-total-card,
  .summary-card,
  .payment-method,
  .cart-trust-panel,
  .benefit-card,
  .timeline-card,
  .package-card,
  .empty-cart-state,
  .kasse-form-panel,
  .kasse-summary-panel,
  .checkout-selected-method-card,
  .checkout-order-card,
  .checkout-package-mini,
  .checkout-consent-card,
  .checkout-access-blocked {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-badges,
  .quick-searches,
  .summary-side,
  .payment-chips,
  .benefit-chip-list {
    gap: 8px;
  }

  .card-top,
  .price-row,
  .card-bottom,
  .cart-item-head,
  .cart-price-row,
  .summary-row,
  .package-breakdown li,
  .checkout-consent-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-side,
  .cart-price-box.align-right,
  .summary-value {
    text-align: left;
  }

  .search-panel h2 {
    font-size: 1.6rem;
  }

  .payment-method-grid {
    grid-template-columns: 1fr;
  }
}
