:root {
  --bf-primary: #1d3557;
  --bf-secondary: #457b9d;
  --bf-accent: #0676a6;
  --bf-light: #f0f8ff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #263238;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

a:not(.btn):not(.nav-link):not(.navbar-brand) {
  color: #005374;
}

h1,
h2,
h3 {
  color: var(--bf-primary);
  font-weight: 700;
}

.skip-link {
  background: #fff;
  color: var(--bf-primary);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--bf-accent);
  outline-offset: 2px;
}

.bg-light-blue {
  background-color: var(--bf-light);
}

.btn-custom {
  background-color: var(--bf-accent);
  border: 0;
  color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
  background-color: #0d7bb2;
  color: #fff;
}

.btn-custom-outline,
.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--bf-accent);
  color: var(--bf-accent);
}

.btn-custom-outline:hover,
.btn-custom-outline:focus,
.btn-outline-custom:hover,
.btn-outline-custom:focus {
  background: var(--bf-accent);
  color: #fff;
}

.navbar,
.site-footer {
  background-color: var(--bf-primary);
}

.site-footer a {
  color: #fff !important;
}

.service-icon,
.icon {
  color: var(--bf-secondary);
}

.yt-consent-placeholder {
  align-items: center;
  background: #e9ecef;
  border: 1px dashed #6c757d;
  border-radius: .5rem;
  display: flex;
  justify-content: center;
  min-height: 320px;
  padding: 1rem;
  text-align: center;
}

.badge-soft {
  background: #e3f1f6;
  color: #004866;
}

.shadow-sm-rounded {
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.check-list li {
  margin-bottom: .5rem;
}

.equal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.equal-card .section {
  margin-bottom: 1rem;
}

.equal-card .grow {
  flex: 1 1 auto;
}

.equal-card .end {
  margin-top: 1rem;
}

.alert-success {
  background-color: #e9f7ef;
  border-color: #c9edd9;
  color: #1b5e20;
}

.thank-you {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68vh;
  padding: 3rem 1.25rem;
  text-align: center;
}

.legal-content {
  max-width: 920px;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.legal-content section {
  margin-bottom: 1.5rem;
}

.page-header {
  background: linear-gradient(135deg, var(--bf-primary), var(--bf-secondary));
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 3.5rem 0;
}

.page-header h1 {
  color: #fff;
}

.content-card {
  background: #fff;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(29, 53, 87, .08);
}

.toc {
  position: sticky;
  top: 1.5rem;
}

.toc .list-group-item {
  background: transparent;
  border: 0;
  padding: .5rem .25rem;
}

.toc a {
  color: var(--bf-primary);
  text-decoration: none;
}

.badge-updated {
  background: rgba(255, 255, 255, .2);
}

.muted {
  color: #6b7280;
}

.back-to-top {
  bottom: 1rem;
  position: fixed;
  right: 1rem;
}

.cookie-bar {
  background: #111;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 16px;
  position: fixed;
  right: 0;
  z-index: 9999;
}

.honeypot {
  left: -10000px;
  position: absolute;
  top: auto;
}

.field-error {
  color: #b42318;
  font-size: .875rem;
  margin-top: .25rem;
}

.cookie-settings-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(69, 123, 157, .14), transparent 30rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
}

.cookie-settings-wrap {
  max-width: 1120px;
  padding-bottom: 5rem;
  padding-top: 4rem;
}

.cookie-settings-hero {
  margin: 0 auto 2.5rem;
  max-width: 760px;
}

.cookie-settings-hero .lead {
  color: #455a64;
  max-width: 680px;
}

.cookie-settings-icon {
  align-items: center;
  background: var(--bf-primary);
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(29, 53, 87, .2);
  color: #fff;
  display: inline-flex;
  font-size: 1.7rem;
  height: 4rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 4rem;
}

.cookie-settings-eyebrow {
  color: #005374;
  letter-spacing: .12em;
}

.cookie-settings-note {
  background: #e8f4ee;
  border: 1px solid #bad9c8;
  border-radius: 1rem;
  color: #174f35;
  padding: 1.1rem 1.25rem;
}

.cookie-setting-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(29, 53, 87, .12);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(29, 53, 87, .08);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: box-shadow .2s ease, transform .2s ease;
}

.cookie-setting-card:hover {
  box-shadow: 0 18px 42px rgba(29, 53, 87, .14);
  transform: translateY(-3px);
}

.cookie-category-icon {
  align-items: center;
  background: var(--bf-light);
  border-radius: .9rem;
  color: var(--bf-primary);
  display: inline-flex;
  font-size: 1.45rem;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.cookie-status {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: .35rem;
  padding: .4rem .7rem;
  white-space: nowrap;
}

.cookie-status-required {
  background: #edf0f2;
  color: #455a64;
}

.cookie-status-active {
  background: #dff3e7;
  color: #17633c;
}

.cookie-status-inactive {
  background: #f1f3f5;
  color: #59636b;
}

.cookie-setting-description {
  color: #52616b;
  line-height: 1.65;
}

.cookie-settings-footer {
  color: #52616b;
}

.aufenthg-page {
  background: #fff;
}

.aufenthg-page .row.g-5,
.ai-page .row.g-5 {
  --bs-gutter-y: 2rem;
}

.aufenthg-page h1,
.aufenthg-page h2,
.aufenthg-page h3 {
  letter-spacing: -.025em;
}

.aufenthg-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(81, 181, 214, .22), transparent 24rem),
    linear-gradient(135deg, #102a43 0%, #173f5f 55%, #0b6684 100%);
  color: #fff;
  overflow: hidden;
  padding: 4.75rem 0 5.5rem;
  position: relative;
}

.aufenthg-hero::after {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
  height: 28rem;
  position: absolute;
  right: -10rem;
  top: -14rem;
  width: 28rem;
}

.aufenthg-hero .container {
  position: relative;
  z-index: 1;
}

.aufenthg-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  margin: 1.25rem 0 1.5rem;
  max-width: 100%;
}

.aufenthg-hero h1 span {
  display: block;
  color: #80d2e8;
}

.aufenthg-hero h1 .aufenthg-title-line {
  color: #fff;
  white-space: nowrap;
}

.aufenthg-hero .lead {
  color: rgba(255, 255, 255, .82);
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 42rem;
}

.aufenthg-eyebrow,
.aufenthg-section-label {
  align-items: center;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: .5rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aufenthg-eyebrow {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #d8f3fa;
  padding: .55rem .85rem;
}

.aufenthg-section-label {
  color: #08779b;
  margin-bottom: .85rem;
}

.aufenthg-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.3rem;
  margin-top: 2rem;
}

.aufenthg-hero-points span {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.aufenthg-hero-points i {
  color: #80d2e8;
  margin-right: .3rem;
}

.aufenthg-video-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(2, 20, 35, .28);
  padding: .75rem;
}

.aufenthg-video-card .ratio,
.aufenthg-video-card iframe,
.aufenthg-video-card .yt-consent-placeholder {
  border-radius: 1rem;
  overflow: hidden;
}

.aufenthg-video-label {
  align-items: center;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  padding: .3rem .4rem 1rem;
}

.aufenthg-video-label .small {
  color: rgba(255, 255, 255, .65);
}

.aufenthg-video-card .yt-consent-placeholder {
  background: #eef5f8;
  color: #263238;
  min-height: auto;
}

.aufenthg-intro {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.aufenthg-intro .container {
  background: #fff;
  border: 1px solid rgba(29, 53, 87, .08);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3.5rem rgba(15, 42, 67, .12);
  padding: 1.5rem 2rem;
}

.aufenthg-stat {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.aufenthg-stat > i {
  align-items: center;
  background: #e8f5f8;
  border-radius: .9rem;
  color: #08779b;
  display: flex;
  flex: 0 0 3.25rem;
  font-size: 1.35rem;
  height: 3.25rem;
  justify-content: center;
}

.aufenthg-stat strong,
.aufenthg-stat span {
  display: block;
}

.aufenthg-stat strong {
  color: var(--bf-primary);
  margin-bottom: .2rem;
}

.aufenthg-stat span {
  color: #667785;
  font-size: .86rem;
}

.aufenthg-section,
.aufenthg-process,
.aufenthg-calculator,
.aufenthg-about {
  padding: 4.5rem 0;
}

.aufenthg-heading {
  margin: 0 auto 2.25rem;
  max-width: 700px;
  text-align: center;
}

.aufenthg-heading h2,
.aufenthg-process h2,
.aufenthg-calculator h2,
.aufenthg-about h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.aufenthg-heading p,
.aufenthg-process .row > div > p,
.aufenthg-calculator .col-lg-5 > p,
.aufenthg-about p {
  color: #667785;
  font-size: 1.08rem;
  line-height: 1.75;
}

.aufenthg-feature {
  background: #fff;
  border: 1px solid #e3ebef;
  border-radius: 1.25rem;
  height: 100%;
  padding: 2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.aufenthg-feature:hover {
  border-color: #abd4df;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 42, 67, .09);
  transform: translateY(-4px);
}

.aufenthg-feature-icon {
  align-items: center;
  background: linear-gradient(135deg, #e9f6f9, #d9eef4);
  border-radius: 1rem;
  color: #08779b;
  display: flex;
  font-size: 1.55rem;
  height: 3.5rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  width: 3.5rem;
}

.aufenthg-feature h3 {
  font-size: 1.2rem;
}

.aufenthg-feature p {
  color: #667785;
  line-height: 1.65;
  margin-bottom: 0;
}

.aufenthg-process {
  background: #f3f8fa;
}

.aufenthg-step {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 .8rem 2rem rgba(15, 42, 67, .06);
  height: 100%;
  padding: 2rem;
  position: relative;
}

.aufenthg-step > span {
  color: #b7d8e1;
  font-size: 2.5rem;
  font-weight: 800;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
}

.aufenthg-step > i {
  color: #08779b;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.aufenthg-step h3 {
  font-size: 1.25rem;
}

.aufenthg-step p {
  color: #667785;
  line-height: 1.65;
  margin: 0;
}

.aufenthg-responsibility {
  align-items: center;
  background: #173f5f;
  border-radius: 1.25rem;
  color: #fff;
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
}

.aufenthg-responsibility > i {
  color: #80d2e8;
  font-size: 2rem;
}

.aufenthg-responsibility strong,
.aufenthg-responsibility span {
  display: block;
}

.aufenthg-responsibility span {
  color: rgba(255, 255, 255, .75);
  margin-top: .25rem;
}

.aufenthg-calculator {
  background: #fff;
}

.aufenthg-calculator-note {
  align-items: flex-start;
  color: #667785;
  display: flex;
  font-size: .88rem;
  gap: .65rem;
  margin-top: 1.5rem;
}

.aufenthg-calculator-note i {
  color: #08779b;
}

.aufenthg-calculator-card {
  background: #f3f8fa;
  border: 1px solid #dfebef;
  border-radius: 1.5rem;
  padding: 2rem;
}

.aufenthg-calculator-card .form-control,
.aufenthg-calculator-card .input-group-text {
  background: #fff;
  border-color: #d3e1e6;
  min-height: 3.25rem;
}

.aufenthg-result {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}

.aufenthg-result > div {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.aufenthg-result span,
.aufenthg-result strong {
  display: block;
}

.aufenthg-result span {
  color: #667785;
  font-size: .8rem;
  margin-bottom: .3rem;
  text-transform: uppercase;
}

.aufenthg-result strong {
  color: var(--bf-primary);
}

.aufenthg-page #kontakt {
  background:
    radial-gradient(circle at 10% 0, rgba(128, 210, 232, .16), transparent 25rem),
    #102a43;
  color: #fff;
  padding: 4.5rem 0 !important;
}

.aufenthg-page #kontakt h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.aufenthg-page #kontakt > .container > p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2rem !important;
}

.aufenthg-page #kontakt form {
  background: #fff;
  border-radius: 1.5rem;
  color: #263238;
  padding: 2rem;
}

.aufenthg-about {
  background: #f3f8fa;
}

.aufenthg-about p {
  margin: 1.25rem auto 0;
  max-width: 780px;
}

.gpt-page {
  background: #f6f8fb;
}

.gpt-page h1,
.gpt-page h2,
.gpt-page h3 {
  letter-spacing: -.035em;
}

.gpt-hero {
  background: #08111f;
  color: #fff;
  overflow: hidden;
  padding: 7.5rem 0 8.5rem;
  position: relative;
}

.gpt-hero::before {
  background: #3bd4c5;
  border-radius: 50%;
  content: "";
  filter: blur(130px);
  height: 22rem;
  opacity: .2;
  position: absolute;
  right: 8%;
  top: 12%;
  width: 22rem;
}

.gpt-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  position: absolute;
}

.gpt-kicker,
.gpt-section-label {
  align-items: center;
  color: #0e9b91;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: .5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gpt-kicker {
  background: rgba(59, 212, 197, .1);
  border: 1px solid rgba(59, 212, 197, .25);
  border-radius: 999px;
  color: #65eadc;
  padding: .55rem .85rem;
}

.gpt-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: .98;
  margin: 1.5rem 0;
}

.gpt-hero h1 span {
  background: linear-gradient(90deg, #54e6d8, #6ba9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.gpt-hero-copy {
  color: #aebdce;
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 40rem;
}

.gpt-btn-primary {
  background: #3bd4c5;
  border-color: #3bd4c5;
  color: #08111f;
  font-weight: 700;
}

.gpt-btn-primary:hover,
.gpt-btn-primary:focus {
  background: #64e5d9;
  border-color: #64e5d9;
  color: #08111f;
}

.gpt-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}

.gpt-btn-ghost:hover,
.gpt-btn-ghost:focus {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.gpt-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.25rem;
  margin-top: 2rem;
}

.gpt-trust-row span {
  color: #8496aa;
  font-size: .82rem;
}

.gpt-trust-row i {
  color: #3bd4c5;
  margin-right: .3rem;
}

.gpt-interface {
  background: rgba(14, 28, 47, .9);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1.4rem;
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, .45);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.gpt-interface-bar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #ccd6e2;
  display: grid;
  font-size: .8rem;
  grid-template-columns: 1fr auto 1fr;
  padding: .85rem 1rem;
}

.gpt-dots {
  display: flex;
  gap: .35rem;
}

.gpt-dots span {
  background: #435267;
  border-radius: 50%;
  height: .55rem;
  width: .55rem;
}

.gpt-live {
  color: #81dfd5;
  justify-self: end;
}

.gpt-live i {
  font-size: .45rem;
  margin-right: .25rem;
}

.gpt-interface-body {
  padding: 1.3rem;
}

.gpt-prompt {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
}

.gpt-avatar {
  align-items: center;
  background: #27364b;
  border-radius: .7rem;
  display: flex;
  flex: 0 0 2.3rem;
  height: 2.3rem;
  justify-content: center;
}

.gpt-prompt small {
  color: #71849a;
}

.gpt-prompt p {
  color: #d9e1ea;
  font-size: .9rem;
  margin: .2rem 0 0;
}

.gpt-answer {
  background: #101e31;
  border: 1px solid rgba(59, 212, 197, .15);
  border-radius: 1rem;
  padding: 1rem;
}

.gpt-answer-head {
  align-items: center;
  color: #65eadc;
  display: flex;
  font-size: .82rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.gpt-answer-head small {
  color: #71849a;
  font-weight: 400;
}

.gpt-task {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #8293a7;
  display: flex;
  font-size: .78rem;
  gap: .65rem;
  padding: .7rem .25rem;
}

.gpt-task.done i {
  color: #3bd4c5;
}

.gpt-task.active {
  background: rgba(59, 212, 197, .07);
  color: #dce6ee;
}

.gpt-task.active i {
  color: #65eadc;
}

.gpt-input {
  align-items: center;
  background: #17263a;
  border: 1px solid #2a3b51;
  border-radius: .8rem;
  color: #61748b;
  display: flex;
  font-size: .8rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: .8rem 1rem;
}

.gpt-input i {
  align-items: center;
  background: #3bd4c5;
  border-radius: .45rem;
  color: #08111f;
  display: flex;
  height: 1.8rem;
  justify-content: center;
  width: 1.8rem;
}

.gpt-marquee {
  background: #3bd4c5;
  color: #08111f;
}

.gpt-capabilities {
  display: flex;
  font-size: .82rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .05em;
  overflow: hidden;
  padding: 1.15rem 0;
  text-transform: uppercase;
}

.gpt-capabilities span {
  white-space: nowrap;
}

.gpt-capabilities i {
  margin-right: .3rem;
}

.gpt-section {
  padding: 7rem 0;
}

.gpt-impact {
  background: #f6f8fb;
}

.gpt-impact h2,
.gpt-centered-heading h2,
.gpt-safety h2,
.gpt-faq h2 {
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-top: .9rem;
}

.gpt-section-copy,
.gpt-centered-heading p,
.gpt-faq .col-lg-4 > p {
  color: #647386;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gpt-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gpt-bento-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 1.4rem;
  min-height: 18rem;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}

.gpt-bento-wide {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-column: span 2;
  grid-template-columns: 1.2fr 1fr;
}

.gpt-card-number {
  color: #9aabba;
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 2.5rem;
}

.gpt-bento-card h3 {
  font-size: 1.65rem;
}

.gpt-bento-card p {
  color: #647386;
  line-height: 1.7;
  max-width: 34rem;
}

.gpt-card-icon {
  color: #0e9b91;
  display: block;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.gpt-bento-accent {
  background: #3bd4c5;
  border-color: #3bd4c5;
}

.gpt-bento-accent .gpt-card-icon,
.gpt-bento-accent h3,
.gpt-bento-accent p {
  color: #08111f;
}

.gpt-bento-dark {
  background: #101c2d;
  border-color: #101c2d;
}

.gpt-bento-dark h3 {
  color: #fff;
}

.gpt-bento-dark p {
  color: #9babbc;
}

.gpt-bento-dark .gpt-card-icon {
  color: #65eadc;
}

.gpt-speed-visual {
  align-items: end;
  display: flex;
  gap: .75rem;
  height: 10rem;
  justify-content: center;
}

.gpt-speed-visual span {
  background: linear-gradient(to top, #0e9b91, #63e8db);
  border-radius: .6rem .6rem .2rem .2rem;
  width: 2.8rem;
}

.gpt-speed-visual span:nth-child(1) {
  height: 38%;
}

.gpt-speed-visual span:nth-child(2) {
  height: 58%;
}

.gpt-speed-visual span:nth-child(3) {
  height: 76%;
}

.gpt-speed-visual span:nth-child(4) {
  height: 100%;
}

.gpt-workflow {
  background: #fff;
}

.gpt-centered-heading {
  margin: 0 auto 4rem;
  max-width: 760px;
  text-align: center;
}

.gpt-flow {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.gpt-flow article {
  background: #f3f6f9;
  min-height: 21rem;
  padding: 2.3rem;
  position: relative;
}

.gpt-flow article:first-child {
  border-radius: 1.3rem 0 0 1.3rem;
}

.gpt-flow article:last-child {
  border-radius: 0 1.3rem 1.3rem 0;
}

.gpt-flow-number {
  color: #c5d0da;
  font-size: 3rem;
  font-weight: 800;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
}

.gpt-flow-icon {
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  color: #0e9b91;
  display: flex;
  font-size: 1.5rem;
  height: 3.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  width: 3.5rem;
}

.gpt-flow h3 {
  font-size: 1.3rem;
}

.gpt-flow p {
  color: #647386;
  line-height: 1.7;
}

.gpt-use-cases {
  align-items: start;
  background: #0c1727;
  border-radius: 1.5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: .7fr 1.3fr;
  margin-top: 2rem;
  padding: 2.5rem;
}

.gpt-use-cases h3 {
  color: #fff;
  font-size: 2rem;
}

.gpt-use-case-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
}

.gpt-use-case-list span {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #c4cfdb;
  padding: .65rem 0;
}

.gpt-use-case-list i {
  color: #3bd4c5;
  margin-right: .4rem;
}

.gpt-safety {
  background:
    radial-gradient(circle at 15% 30%, rgba(59, 212, 197, .12), transparent 24rem),
    #08111f;
  color: #fff;
  padding: 7rem 0;
}

.gpt-safety h2 {
  color: #fff;
}

.gpt-safety .col-lg-5 > p {
  color: #9dadbe;
  line-height: 1.75;
}

.gpt-safety-rule {
  align-items: center;
  border: 1px solid rgba(59, 212, 197, .22);
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
}

.gpt-safety-rule > i {
  color: #3bd4c5;
  font-size: 1.6rem;
}

.gpt-safety-rule strong,
.gpt-safety-rule span {
  display: block;
}

.gpt-safety-rule span {
  color: #8fa0b3;
  font-size: .88rem;
  margin-top: .2rem;
}

.gpt-safety-panel {
  background: #111e30;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

.gpt-safety-column {
  padding: 2rem;
}

.gpt-safety-column + .gpt-safety-column {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.gpt-safety-column h3 {
  color: #fff;
  font-size: 1.1rem;
}

.gpt-safety-column.allowed h3 i {
  color: #3bd4c5;
}

.gpt-safety-column.forbidden h3 i {
  color: #ff8b91;
}

.gpt-safety-column ul {
  color: #a8b6c5;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.gpt-safety-column li {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: .8rem 0;
}

.gpt-page #kontakt {
  background: #3bd4c5;
  color: #08111f;
  padding: 7rem 0 !important;
}

.gpt-page #kontakt h2 {
  color: #08111f;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.gpt-page #kontakt > .container > p {
  font-size: 1.05rem;
}

.gpt-page #kontakt form {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 1.5rem 4rem rgba(8, 17, 31, .15);
  padding: 2rem;
  text-align: left;
}

.gpt-faq {
  background: #f6f8fb;
}

.gpt-faq .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dce3ea;
}

.gpt-faq .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--bf-primary);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.4rem .25rem;
}

.gpt-faq .accordion-body {
  color: #647386;
  line-height: 1.7;
  padding: 0 .25rem 1.5rem;
}

@media (max-width: 991.98px) {
  .aufenthg-hero {
    padding: 4rem 0 4.75rem;
  }

  .aufenthg-section,
  .aufenthg-process,
  .aufenthg-calculator,
  .aufenthg-about {
    padding: 3.75rem 0;
  }

  .gpt-hero,
  .gpt-section,
  .gpt-safety {
    padding: 5rem 0;
  }

  .gpt-interface {
    transform: none;
  }

  .gpt-capabilities {
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }

  .gpt-use-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .cookie-settings-wrap {
    padding-top: 2.5rem;
  }

  .cookie-settings-hero .display-5 {
    font-size: 2.25rem;
  }

  .aufenthg-hero {
    padding: 3.25rem 0 4rem;
  }

  .aufenthg-hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.65rem);
  }

  .aufenthg-hero .btn {
    width: 100%;
  }

  .aufenthg-intro {
    margin-top: -2rem;
    padding: 0 .75rem;
  }

  .aufenthg-intro .container {
    padding: 1.5rem;
  }

  .aufenthg-result {
    grid-template-columns: 1fr;
  }

  .aufenthg-responsibility {
    align-items: flex-start;
    padding: 1.35rem;
  }

  .aufenthg-calculator-card,
  .aufenthg-page #kontakt form {
    padding: 1.35rem;
  }

  .gpt-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .gpt-hero .btn {
    width: 100%;
  }

  .gpt-interface-body {
    padding: .8rem;
  }

  .gpt-answer-head small,
  .gpt-task:last-of-type {
    display: none;
  }

  .gpt-bento,
  .gpt-bento-wide,
  .gpt-flow,
  .gpt-safety-panel {
    grid-template-columns: 1fr;
  }

  .gpt-bento-wide {
    grid-column: auto;
  }

  .gpt-bento-card {
    min-height: auto;
  }

  .gpt-speed-visual {
    height: 7rem;
  }

  .gpt-flow {
    gap: 1rem;
  }

  .gpt-flow article,
  .gpt-flow article:first-child,
  .gpt-flow article:last-child {
    border-radius: 1.2rem;
    min-height: auto;
  }

  .gpt-use-cases,
  .gpt-page #kontakt form {
    padding: 1.35rem;
  }

  .gpt-use-case-list {
    grid-template-columns: 1fr;
  }

  .gpt-safety-column + .gpt-safety-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

/* BehördenGPT landing page */
.ai-page {
  background: #fff;
}

.ai-page h1,
.ai-page h2,
.ai-page h3 {
  letter-spacing: -.03em;
}

.ai-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(70, 167, 190, .25), transparent 25rem),
    linear-gradient(135deg, #102a43 0%, #173f5f 55%, #125f78 100%);
  color: #fff;
  overflow: hidden;
  padding: 4.75rem 0 5.5rem;
}

.ai-eyebrow,
.ai-section-label {
  align-items: center;
  color: #08779b;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: .5rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ai-eyebrow {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  color: #d8f5fa;
  padding: .55rem .85rem;
}

.ai-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 1;
  margin: 1.5rem 0;
  max-width: 50rem;
}

.ai-hero h1 span {
  color: #80d2e8;
  display: block;
}

.ai-hero-text {
  color: rgba(255, 255, 255, .8);
  font-size: 1.16rem;
  line-height: 1.75;
  max-width: 43rem;
}

.ai-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 2rem;
}

.ai-hero-meta span {
  color: rgba(255, 255, 255, .73);
  font-size: .84rem;
}

.ai-hero-meta i {
  color: #80d2e8;
  margin-right: .25rem;
}

.ai-overview-card {
  background: rgba(255, 255, 255, .97);
  border-radius: 1.4rem;
  box-shadow: 0 2rem 5rem rgba(5, 25, 43, .3);
  color: #263238;
  padding: 1.25rem;
}

.ai-overview-head {
  align-items: center;
  border-bottom: 1px solid #e5ecef;
  display: flex;
  gap: .85rem;
  padding: .35rem .35rem 1.1rem;
}

.ai-overview-icon {
  align-items: center;
  background: #e4f4f7;
  border-radius: .8rem;
  color: #08779b;
  display: flex;
  font-size: 1.25rem;
  height: 2.8rem;
  justify-content: center;
  width: 2.8rem;
}

.ai-overview-head small,
.ai-overview-head strong {
  display: block;
}

.ai-overview-head small {
  color: #748592;
  font-size: .75rem;
}

.ai-overview-item {
  align-items: center;
  border-bottom: 1px solid #edf1f3;
  display: grid;
  gap: .8rem;
  grid-template-columns: auto 1fr auto;
  padding: 1rem .35rem;
}

.ai-overview-item > span {
  color: #9aabb5;
  font-size: .7rem;
  font-weight: 800;
}

.ai-overview-item strong,
.ai-overview-item small {
  display: block;
}

.ai-overview-item small {
  color: #7b8a94;
  margin-top: .15rem;
}

.ai-overview-item > i {
  color: #08779b;
}

.ai-human-note {
  align-items: flex-start;
  background: #edf7f4;
  border-radius: .9rem;
  color: #31564d;
  display: flex;
  font-size: .82rem;
  gap: .7rem;
  margin-top: 1rem;
  padding: .9rem;
}

.ai-human-note i {
  color: #287c68;
  font-size: 1.1rem;
}

.ai-promise {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.ai-promise .container {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 1.2rem 3.5rem rgba(16, 42, 67, .13);
  overflow: hidden;
}

.ai-promise-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 7rem;
  padding: 1.4rem 1.7rem;
}

.ai-promise .col-md-4 + .col-md-4 .ai-promise-item {
  border-left: 1px solid #e7edef;
}

.ai-promise-item > i {
  color: #08779b;
  font-size: 1.6rem;
}

.ai-promise-item strong,
.ai-promise-item span {
  display: block;
}

.ai-promise-item span {
  color: #70818d;
  font-size: .83rem;
  margin-top: .2rem;
}

.ai-section {
  padding: 4.5rem 0;
}

.ai-heading {
  margin: 0 auto 2.25rem;
  max-width: 760px;
  text-align: center;
}

.ai-heading h2,
.ai-applications h2,
.ai-safety h2,
.ai-faq h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  margin: .8rem 0 1rem;
}

.ai-heading p,
.ai-sticky-copy > p,
.ai-faq .col-lg-4 > p {
  color: #667785;
  font-size: 1.05rem;
  line-height: 1.75;
}

.ai-benefit {
  border: 1px solid #e0e9ed;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

.ai-benefit-icon {
  align-items: center;
  background: #e9f5f8;
  border-radius: .9rem;
  color: #08779b;
  display: flex;
  font-size: 1.45rem;
  height: 3.2rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  width: 3.2rem;
}

.ai-benefit h3 {
  font-size: 1.25rem;
}

.ai-benefit p {
  color: #667785;
  flex: 1;
  line-height: 1.7;
}

.ai-benefit-tag {
  color: #08779b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.ai-applications {
  background: #f3f8fa;
}

.ai-sticky-copy {
  position: sticky;
  top: 2rem;
}

.ai-application-list {
  background: #fff;
  border: 1px solid #dfebef;
  border-radius: 1.3rem;
  overflow: hidden;
}

.ai-application-list article {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  padding: 1.6rem;
}

.ai-application-list article + article {
  border-top: 1px solid #e6edef;
}

.ai-application-list article > span {
  color: #9aabb5;
  font-size: .73rem;
  font-weight: 800;
}

.ai-application-list h3 {
  font-size: 1.15rem;
  margin-bottom: .25rem;
}

.ai-application-list p {
  color: #667785;
  line-height: 1.55;
  margin: 0;
}

.ai-application-list article > i {
  color: #08779b;
  font-size: 1.45rem;
}

.ai-safety {
  background: #102a43;
  color: #fff;
  padding: 4.5rem 0;
}

.ai-section-label-light {
  color: #80d2e8;
}

.ai-safety h2 {
  color: #fff;
}

.ai-safety .col-lg-6 > p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ai-principle {
  align-items: center;
  background: #edf7f4;
  border-radius: 1rem;
  color: #31564d;
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.2rem;
}

.ai-principle > i {
  color: #80d2e8;
  font-size: 1.7rem;
}

.ai-principle strong,
.ai-principle span {
  display: block;
}

.ai-principle span {
  color: #5e776f;
  font-size: .85rem;
  margin-top: .2rem;
}

.ai-rules {
  background: #fff;
  border-radius: 1.3rem;
  color: #263238;
  overflow: hidden;
}

.ai-rule {
  padding: 1.6rem 2rem;
}

.ai-rule + .ai-rule {
  border-top: 1px solid #e5ecef;
}

.ai-rule h3 {
  font-size: 1.05rem;
}

.ai-rule.allowed h3 i {
  color: #2b806c;
}

.ai-rule.forbidden h3 i {
  color: #b34d55;
}

.ai-rule ul {
  color: #667785;
  display: grid;
  gap: .5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.ai-process {
  background: #fff;
}

.ai-process-step {
  background: #f3f8fa;
  border-radius: 1.2rem;
  height: 100%;
  padding: 2rem;
}

.ai-process-step > span {
  align-items: center;
  background: #08779b;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 800;
  height: 2.7rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 2.7rem;
}

.ai-process-step h3 {
  font-size: 1.2rem;
}

.ai-process-step p {
  color: #667785;
  line-height: 1.65;
  margin: 0;
}

.ai-page #kontakt {
  background: #eaf4f7;
  padding: 4.5rem 0 !important;
}

.ai-page #kontakt > .container > p {
  margin-bottom: 2rem !important;
}

.ai-page #kontakt h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.5rem);
}

.ai-page #kontakt form {
  background: #fff;
  border: 1px solid #dce8ec;
  border-radius: 1.3rem;
  box-shadow: 0 1rem 3rem rgba(16, 42, 67, .08);
  padding: 2rem;
  text-align: left;
}

.ai-faq {
  background: #fff;
}

.ai-faq .accordion-item {
  border: 0;
  border-bottom: 1px solid #dfe7eb;
}

.ai-faq .accordion-button {
  box-shadow: none;
  color: var(--bf-primary);
  font-weight: 700;
  padding: 1.4rem .25rem;
}

.ai-faq .accordion-button:not(.collapsed) {
  background: transparent;
}

.ai-faq .accordion-body {
  color: #667785;
  line-height: 1.7;
  padding: 0 .25rem 1.4rem;
}

@media (max-width: 991.98px) {
  .ai-hero,
  .ai-section,
  .ai-safety {
    padding: 3.75rem 0;
  }

  .ai-sticky-copy {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .ai-promise .col-md-4 + .col-md-4 .ai-promise-item {
    border-left: 0;
    border-top: 1px solid #e7edef;
  }

  .ai-rule ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ai-hero {
    padding: 3.25rem 0 4rem;
  }

  .aufenthg-page .row.g-5,
  .ai-page .row.g-5 {
    --bs-gutter-y: 1.5rem;
  }

  .ai-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .ai-hero .btn {
    width: 100%;
  }

  .ai-promise {
    margin-top: -2rem;
    padding: 0 .75rem;
  }

  .ai-overview-card,
  .ai-page #kontakt form {
    padding: 1.25rem;
  }

  .ai-application-list article {
    grid-template-columns: auto 1fr;
    padding: 1.25rem;
  }

  .ai-application-list article > i {
    display: none;
  }
}
