* {
  box-sizing: border-box;
}

:root {
  --brand-color-dark-strong: #00296b;
  --brand-color-dark: #003f88;
  --brand-color-dark-opacity-low: rgb(0, 63, 136, 0.5);
  --brand-color-medium: rgb(0, 80, 157);
  --brand-color-medium-opacity-low: rgb(0, 80, 157, 0.5);
  --brand-color-medium-opacity-very-low: rgb(0, 80, 157, 0.15);
  --brand-color-medium-opacity-extrem-low: rgb(0, 80, 157, 0.05);
  --brand-color-light: rgb(66, 165, 245);
  --brand-color-light-opacity-low: rgb(66, 165, 245, 0.5);
  --brand-color-light-opacity-bit-low: rgb(66, 165, 245, 0.25);
  --brand-color-light-opacity-very-low: rgb(66, 165, 245, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.roboto-loaded body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

img {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
}

p,
li {
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  line-height: 2rem;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#app {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.sub-headline {
  padding-bottom: 1.75rem;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.07rem;
  line-height: 1.5;
}

.navigation-web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  height: 5rem;
}
.navigation-web a {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  height: 100%;
  letter-spacing: 0.05rem;
  border-bottom: 0.15rem solid transparent;
}
.navigation-web a:hover {
  color: var(--brand-color-medium);
  border-color: var(--brand-color-medium);
}
.navigation-web a.active {
  color: var(--brand-color-medium);
  border-color: var(--brand-color-medium);
}
.navigation-web .logo-wrapper span {
  color: var(--brand-color-medium);
}
@media (max-width: 82.5rem) {
  .navigation-web {
    display: none;
  }
}

.navigation-mobile {
  height: 5rem;
  padding: 0rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation-mobile .logo-wrapper span {
  color: var(--brand-color-medium);
}
.navigation-mobile .menu-icon {
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color-medium);
  font-size: 2.5rem;
}
.navigation-mobile .menu-list {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.5rem;
}
.navigation-mobile .menu-list .logo-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--brand-color-medium);
  padding: 1rem 2rem;
}
.navigation-mobile .menu-list .logo-wrapper .logo {
  height: auto;
  width: 1.5rem;
}
.navigation-mobile .menu-list .logo-wrapper span {
  color: white;
}
.navigation-mobile .menu-list .links-wrapper {
  display: flex;
  flex-direction: column;
}
.navigation-mobile .menu-list .links-wrapper a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.25rem;
  padding: 1.25rem 4rem;
}
.navigation-mobile .menu-list .links-wrapper a:hover {
  background-color: var(--brand-color-medium-opacity-very-low);
}
@media (min-width: 82.5rem) {
  .navigation-mobile {
    display: none;
  }
}

.grey-bg {
  z-index: 1;
  background-color: rgba(180, 180, 180, 0.506);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.logo-wrapper span {
  font-weight: 500;
  padding-top: 0.25rem;
}
.logo-wrapper .logo {
  width: 2.5rem;
  height: auto;
}

.basic-view {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.basic-view .basic-wrapper {
  max-width: 90rem;
  width: 100%;
}

.free-start-link {
  display: block;
  font-size: 1.125rem;
  color: var(--brand-color-medium);
  padding: 1.125rem 1.625rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.free-start-link:hover {
  opacity: 0.9;
}

.basic-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.25rem;
}
.basic-list li i,
.basic-list li svg {
  height: 1.75rem;
  width: 1.75rem;
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--brand-color-medium);
  display: flex;
  align-items: center;
}
.hero .hero-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero .hero-wrapper .left {
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  color: white;
}
.hero .hero-wrapper .left h1 {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.09rem;
  line-height: 3.5rem;
}
.hero .hero-wrapper .right img {
  height: auto;
  width: 45rem;
}
@media (max-width: 82.5rem) {
  .hero {
    text-align: center;
  }
  .hero .hero-wrapper {
    flex-direction: column;
  }
  .hero .hero-wrapper .left {
    align-items: center;
  }
}
@media (max-width: 52.5rem) {
  .hero .hero-wrapper .left {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero .hero-wrapper .left h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
  .hero .hero-wrapper .left li {
    font-size: 1.125rem;
  }
  .hero .hero-wrapper .right img {
    height: auto;
    width: 27.5rem;
  }
}
@media (max-width: 30rem) {
  .hero .hero-wrapper .left h1 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .hero .hero-wrapper .left li {
    font-size: 1rem;
  }
  .hero .hero-wrapper .right img {
    height: auto;
    width: 20rem;
  }
}

.functions .functions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem;
}
.functions .functions-wrapper .description {
  text-align: center;
  max-width: 40rem;
  opacity: 0.6;
}
.functions .functions-wrapper .functions-cards {
  padding-top: 5rem;
  justify-content: center;
  display: flex;
  gap: 2rem;
}
.functions .functions-wrapper .functions-cards .card {
  width: 17.5rem;
  height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.5rem;
}
.functions .functions-wrapper .functions-cards .card i {
  color: var(--brand-color-medium);
  font-size: 3rem;
  height: 3rem;
  width: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.functions .functions-wrapper .functions-cards .card p {
  font-size: 1.25rem;
  text-align: center;
  opacity: 0.75;
}
@media (max-width: 82.5rem) {
  .functions .functions-wrapper .functions-cards {
    width: calc(2 * 17.5rem + 2 * 1rem);
    flex-wrap: wrap;
  }
}
@media (max-width: 52.5rem) {
  .functions .functions-wrapper .sub-headline {
    font-size: 2rem;
  }
}
@media (max-width: 45rem) {
  .functions .functions-wrapper .functions-cards {
    width: inherit;
  }
}

.story {
  background-color: var(--brand-color-medium);
}
.story .story-wrapper {
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  color: white;
}
.story .story-wrapper .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.story .story-wrapper .left p,
.story .story-wrapper .left .basic-list {
  padding-bottom: 1.75rem;
}
.story .story-wrapper .left .free-start-link {
  margin-top: 1.75rem;
}
.story .story-wrapper .right img {
  width: 40rem;
  height: auto;
}
@media (max-width: 82.5rem) {
  .story .story-wrapper {
    flex-direction: column;
  }
  .story .story-wrapper .left {
    text-align: center;
    align-items: center;
  }
  .story .story-wrapper .left p {
    max-width: 40rem;
  }
}
@media (max-width: 52.5rem) {
  .story .story-wrapper .left .sub-headline {
    font-size: 2rem;
    line-height: 3rem;
  }
  .story .story-wrapper .left p {
    padding-bottom: 2.25rem;
  }
  .story .story-wrapper .left .basic-list {
    text-align: left;
  }
  .story .story-wrapper .right img {
    height: auto;
    width: 27.5rem;
  }
}
@media (max-width: 30rem) {
  .story .story-wrapper .left .basic-list li {
    font-size: 1.125rem;
  }
  .story .story-wrapper .right img {
    height: auto;
    width: 20rem;
  }
}

.about .about-wrapper {
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.about .about-wrapper .left img {
  width: 40rem;
  height: auto;
}
.about .about-wrapper .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about .about-wrapper .right p,
.about .about-wrapper .right ul,
.about .about-wrapper .right h3 {
  opacity: 0.6;
  padding-bottom: 1.75rem;
}
.about .about-wrapper .right h3 {
  padding-bottom: 0.75rem;
  font-size: 1.25rem;
}
.about .about-wrapper .right ul {
  font-size: 1.25rem;
  padding-left: 1.25rem;
  list-style-type: initial;
}
@media (max-width: 82.5rem) {
  .about .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about .about-wrapper .right {
    max-width: 50rem;
    align-items: center;
  }
  .about .about-wrapper .right ul {
    text-align: left;
  }
}
@media (max-width: 52.5rem) {
  .about .about-wrapper .left img {
    height: auto;
    width: 27.5rem;
  }
  .about .about-wrapper .right .sub-headline {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media (max-width: 30rem) {
  .about .about-wrapper .left img {
    height: auto;
    width: 20rem;
  }
}

.benefits {
  background-color: var(--brand-color-medium);
}
.benefits .benefits-wrapper {
  padding: 5rem 1rem;
}
.benefits .benefits-wrapper h2 {
  color: white;
  text-align: center;
  padding-bottom: 3rem;
}
.benefits .benefits-wrapper .cards-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits .benefits-wrapper .cards-wrapper .cards {
  width: 100%;
  max-width: 70rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper:nth-child(even) {
  display: flex;
  justify-content: flex-end;
}
.benefits .benefits-wrapper .cards-wrapper .cards .card-wrapper .card {
  background-color: var(--brand-color-medium);
  color: white;
  max-width: 40rem;
  padding: 2rem;
  border: 0.125rem solid var(--brand-color-light-opacity-bit-low);
  border-radius: 1.25rem;
  box-shadow: rgba(20, 20, 20, 0.2) 0px 7px 29px 0px;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .header-wrapper {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  gap: 1rem;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .header-wrapper
  .number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.125rem solid var(--brand-color-light-opacity-bit-low);
  border-radius: 0.625rem;
  background-color: var(--brand-color-light-opacity-very-low);
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .header-wrapper
  .number
  span {
  color: white;
  font-size: 2rem;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .header-wrapper
  h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .header-wrapper
  h3
  .highlight {
  position: relative;
  z-index: 1;
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.benefits .benefits-wrapper .cards-wrapper .cards .card-wrapper .card p {
  padding-bottom: 0.75rem;
}
.benefits
  .benefits-wrapper
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  p:last-child {
  padding-bottom: 0;
}
@media (max-width: 32.5rem) {
  .benefits .benefits-wrapper .cards-wrapper .cards .card-wrapper .card {
    padding: 1.25rem;
    text-align: center;
  }
  .benefits
    .benefits-wrapper
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .header-wrapper
    .number {
    display: none;
  }
  .benefits
    .benefits-wrapper
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .header-wrapper
    h3 {
    line-height: 1.5;
  }
}

.pricing .pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem;
  text-align: center;
}
.pricing .pricing-wrapper .pricing-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.66rem;
  padding-top: 3.25rem;
}
.pricing .pricing-wrapper .pricing-cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.pricing .pricing-wrapper .pricing-cards .card .header {
  color: white;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--brand-color-medium);
  width: 100%;
  padding: 2rem;
}
.pricing .pricing-wrapper .pricing-cards .card .header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.pricing .pricing-wrapper .pricing-cards .card .header .pricing-info {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}
.pricing .pricing-wrapper .pricing-cards .card .header .pricing-info .price {
  font-size: 2.5rem;
}
.pricing .pricing-wrapper .pricing-cards .card .main {
  background-color: white;
  width: 100%;
  padding: 2rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.pricing .pricing-wrapper .pricing-cards .card .main .free-start-link {
  margin-top: 2rem;
  background-color: var(--brand-color-medium);
  color: white;
}
.pricing .pricing-wrapper .pricing-note {
  font-size: 1.125rem;
  padding-top: 2rem;
  opacity: 0.6;
}
@media (max-width: 92.5rem) {
  .pricing .pricing-wrapper .pricing-cards {
    width: calc(2 * 20rem + 2 * 2.66rem);
  }
}
@media (max-width: 52.5rem) {
  .pricing .pricing-wrapper .sub-headline {
    font-size: 2rem;
  }
  .pricing .pricing-wrapper .pricing-cards {
    width: inherit;
  }
  .pricing .pricing-wrapper .pricing-cards .card {
    width: 19rem;
  }
  .pricing .pricing-wrapper .pricing-cards .card li {
    font-size: 1.125rem;
  }
}

.questions .questions-wrapper {
  padding: 5rem 1rem;
}
.questions .questions-wrapper .sub-headline {
  text-align: center;
}
.questions .questions-wrapper .content details {
  border-bottom: 0.0625rem solid var(--brand-color-medium-opacity-low);
  padding: 1.2rem;
}
.questions .questions-wrapper .content details summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.75rem;
  font-weight: 300;
  list-style-type: none;
  line-height: 2.5rem;
  gap: 1rem;
}
.questions .questions-wrapper .content details summary::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: var(--brand-color-medium);
  background-image: url(/images/plus-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.questions .questions-wrapper .content details summary::-webkit-details-marker {
  display: none;
}
.questions .questions-wrapper .content details p {
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}
.questions .questions-wrapper .content details[open] summary::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(/images/dash-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 52.5rem) {
  .questions .questions-wrapper .sub-headline {
    font-size: 2rem;
  }
  .questions .questions-wrapper .content details summary {
    font-size: 1.5rem;
  }
  .questions .questions-wrapper .content details p {
    font-size: 1.125rem;
  }
}
@media (max-width: 45rem) {
  .questions .questions-wrapper .content details summary {
    gap: 0.75rem;
    font-size: 1.25rem;
  }
  .questions .questions-wrapper .content details summary::after {
    width: 1.5rem;
    height: 1.5rem;
  }
  .questions .questions-wrapper .content details p {
    font-size: 1rem;
  }
  .questions .questions-wrapper .content details[open] summary::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

footer {
  padding: 5rem 1rem;
  background-color: var(--brand-color-medium);
}
footer .footer-wrapper {
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.125rem;
}
footer .footer-wrapper a {
  color: white;
}
footer .footer-wrapper .legal,
footer .footer-wrapper .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
footer .footer-wrapper .legal .headline,
footer .footer-wrapper .contact .headline {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
}
footer .footer-wrapper .legal a,
footer .footer-wrapper .contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid transparent;
}
footer .footer-wrapper .legal a:hover,
footer .footer-wrapper .contact a:hover {
  border-bottom: 1px solid white;
}
@media (max-width: 52.5rem) {
  footer .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  footer .footer-wrapper .legal,
  footer .footer-wrapper .contact {
    align-items: center;
  }
  footer .footer-wrapper .legal h4,
  footer .footer-wrapper .contact h4 {
    padding-bottom: 0.25rem;
  }
}

.top-headline-bg {
  background-color: var(--brand-color-medium);
  padding: 5rem 3rem;
  text-align: center;
  color: white;
}
.top-headline-bg h1 {
  font-size: 2.5rem;
  font-weight: 400;
}
@media (max-width: 30rem) {
  .top-headline-bg {
    padding: 5rem 1rem;
  }
  .top-headline-bg h1 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
}

.agb .basic-wrapper,
.privacy .basic-wrapper,
.impressum .basic-wrapper {
  padding: 5rem 1rem;
}
.agb .basic-wrapper h2,
.privacy .basic-wrapper h2,
.impressum .basic-wrapper h2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.agb .basic-wrapper p,
.privacy .basic-wrapper p,
.impressum .basic-wrapper p {
  font-size: 1.125rem;
}

.page-not-found {
  text-align: center;
  padding-top: 5rem;
  flex-grow: 1;
}

.calculator {
  flex-grow: 1;
}

.ratgeber,
.tools {
  flex-grow: 1;
}
.ratgeber .top-headline-bg p,
.tools .top-headline-bg p {
  padding-top: 2rem;
}
.ratgeber main,
.tools main {
  padding: 0 2rem;
  flex-direction: column;
  align-items: center;
}
.ratgeber main .basic-section,
.tools main .basic-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
  padding: 5rem 0rem;
  border-bottom: 0.1rem solid var(--brand-color-medium-opacity-low);
}
.ratgeber main .basic-section .image-wrapper img,
.tools main .basic-section .image-wrapper img {
  border-radius: 1rem;
}
.ratgeber main .basic-section .content,
.tools main .basic-section .content {
  flex-grow: 1;
}
.ratgeber main .basic-section .content .sub-headline,
.tools main .basic-section .content .sub-headline {
  font-size: 2rem;
  font-weight: 400;
}
.ratgeber main .basic-section .content .links,
.tools main .basic-section .content .links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 4rem;
  row-gap: 1rem;
}
.ratgeber main .basic-section .content .links a,
.tools main .basic-section .content .links a {
  padding: 0.5rem 0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: calc(50% - 2rem);
  flex-shrink: 1;
  color: var(--brand-color-medium);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  line-height: 1.5;
}
.ratgeber main .basic-section .content .links a:hover,
.tools main .basic-section .content .links a:hover {
  filter: brightness(1.5);
}
.ratgeber main .basic-section .content .links a i,
.tools main .basic-section .content .links a i {
  color: var(--brand-color-medium);
  font-size: 1.5rem;
}
.ratgeber main .basic-section:last-child,
.tools main .basic-section:last-child {
  border-bottom: none;
}
@media (max-width: 62.5rem) {
  .ratgeber main .basic-section,
  .tools main .basic-section {
    flex-direction: column;
    gap: 2rem;
  }
  .ratgeber main .basic-section .image-wrapper,
  .tools main .basic-section .image-wrapper {
    width: 100%;
  }
  .ratgeber main .basic-section .image-wrapper img,
  .tools main .basic-section .image-wrapper img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    object-position: 50% 75%;
  }
}
@media (max-width: 42.5rem) {
  .ratgeber main,
  .tools main {
    padding: 0 1rem;
  }
  .ratgeber main .basic-section,
  .tools main .basic-section {
    flex-direction: column;
  }
  .ratgeber main .basic-section .image-wrapper img,
  .tools main .basic-section .image-wrapper img {
    height: 18rem;
  }
  .ratgeber main .basic-section .content .links a,
  .tools main .basic-section .content .links a {
    font-size: 1.125rem;
    width: calc(100%);
  }
}

@media (max-width: 52.5rem) {
  .sub-headline {
    font-size: 2rem;
  }
}

/* ===== Checkbox ===== */
.checkbox-wrapper-2 {
  display: flex;
  align-items: center;
}
.checkbox-wrapper-2 label {
  padding-right: 1rem;
  cursor: pointer;
  font-size: 1.125rem;
}
.checkbox-wrapper-2 .input-checkbox {
  appearance: none;
  background-color: #dfe1e4;
  border-radius: 4.5rem;
  border-style: none;
  flex-shrink: 0;
  height: 1.25rem;
  margin: 0;
  position: relative;
  width: 1.875rem;
}
.checkbox-wrapper-2 .input-checkbox::before {
  bottom: -0.375rem;
  content: "";
  left: -0.375rem;
  position: absolute;
  right: -0.375rem;
  top: -0.375rem;
}
.checkbox-wrapper-2 .input-checkbox,
.checkbox-wrapper-2 .input-checkbox::after {
  cursor: pointer;
  transition: all 100ms ease-out;
}
.checkbox-wrapper-2 .input-checkbox::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 0.875rem;
  left: 0.1875rem;
  position: absolute;
  top: 0.1875rem;
  width: 0.875rem;
}
.checkbox-wrapper-2 input[type="checkbox"] {
  cursor: pointer;
}
.checkbox-wrapper-2 .input-checkbox:hover {
  background-color: #c9cbcd;
  transition-duration: 0s;
}
.checkbox-wrapper-2 .input-checkbox:checked {
  background-color: var(--brand-color-medium);
}
.checkbox-wrapper-2 .input-checkbox:checked::after {
  background-color: #fff;
  left: 0.7rem;
}
.checkbox-wrapper-2 :focus:not(.focus-visible) {
  outline: 0;
}
.checkbox-wrapper-2 .input-checkbox:checked:hover {
  background-color: var(--brand-color-dark);
}

/* ===== Currency Input ===== */
.currency-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.currency-input label {
  font-size: 1.125rem;
}
.currency-input .input-wrapper {
  display: flex;
  height: 2.5rem;
  overflow: hidden;
}
.currency-input .input-wrapper .currency-sign {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  font-size: 1.25rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b1bbcb49;
  border: 0.1rem solid rgba(113, 113, 113, 0.4);
  border-right: none;
  z-index: 1;
}
.currency-input .input-wrapper input {
  font-size: 1.25rem;
  border: 0.1rem solid rgba(113, 113, 113, 0.4);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  width: 100%;
  padding: 0rem 0.5rem;
}

/* ===== Calculator ===== */
.calculator .basic-view .wrapper {
  padding: 5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.calculator .basic-view .wrapper .form {
  width: calc(33.33% - 1.33rem);
  background-color: var(--brand-color-medium-opacity-extrem-low);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.calculator .basic-view .wrapper .overview {
  background-color: var(--brand-color-medium-opacity-extrem-low);
  border-radius: 0.5rem;
  overflow: hidden;
  width: calc(33.33% - 1.33rem);
}
.calculator .basic-view .wrapper .overview h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: white;
  background-color: var(--brand-color-medium);
  text-align: center;
  padding: 1rem 0;
}
.calculator .basic-view .wrapper .overview .item {
  padding: 1.5rem 2rem;
  border-bottom: 0.1rem solid var(--brand-color-medium-opacity-very-low);
}
.calculator .basic-view .wrapper .overview .item h3 {
  font-weight: 400;
}
.calculator .basic-view .wrapper .overview .item p {
  padding-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 500;
  min-height: 2.75rem;
}
.calculator .basic-view .wrapper .overview .item:last-child {
  border-bottom: none;
}
.calculator .basic-view .wrapper .statistic {
  background-color: var(--brand-color-medium-opacity-extrem-low);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  width: calc(33.34% - 1.34rem);
}
.calculator .basic-view .wrapper .statistic .circle {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  position: relative;
  background: gray;
}
.calculator .basic-view .wrapper .statistic .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
.calculator .basic-view .wrapper .statistic .list .item {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 0.5rem;
}
.calculator .basic-view .wrapper .statistic .list .item .dot-wrapper {
  flex-grow: 1;
}
.calculator .basic-view .wrapper .statistic .list .item .dot-wrapper .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: grey;
}
.calculator .basic-view .wrapper .statistic .list .item h3 {
  font-size: 1rem;
  font-weight: 500;
}
.calculator .basic-view .wrapper .statistic .list .item.purchase .dot {
  background-color: red;
}
.calculator .basic-view .wrapper .statistic .list .item.tax .dot {
  background-color: blue;
}
.calculator .basic-view .wrapper .statistic .list .item.profit .dot {
  background-color: green;
}
.calculator .basic-view .wrapper .form,
.calculator .basic-view .wrapper .overview,
.calculator .basic-view .wrapper .statistic {
  min-width: 21rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 26rem) {
  .calculator .basic-view .wrapper {
    padding: 4rem 1rem;
  }
  .calculator .basic-view .wrapper .form,
  .calculator .basic-view .wrapper .overview,
  .calculator .basic-view .wrapper .statistic {
    width: 100%;
    min-width: inherit;
  }
}

/* ============================================================
   Modern Calculator (.calc-modern)
   ============================================================ */
.calc-modern {
  --c-purchase: #ef4444;
  --c-tax: #f59e0b;
  --c-profit: #10b981;
  --c-surface: #ffffff;
  --c-surface-soft: #f6f8fb;
  --c-border: #e5e7eb;
  --c-text: #0f172a;
  --c-muted: #64748b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:
    0 10px 30px -12px rgba(15, 23, 42, 0.18), 0 2px 6px rgba(15, 23, 42, 0.05);
  --radius: 1rem;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 60%);
  color: var(--c-text);
}

.calc-modern .top-headline-bg {
  background: linear-gradient(
    135deg,
    var(--brand-color-dark) 0%,
    var(--brand-color-medium) 100%
  );
  padding: 5rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}
.calc-modern .top-headline-bg h1 {
  font-size: 2.75rem;
  letter-spacing: 0.02em;
}
.calc-modern .top-headline-bg .subtitle {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.calc-modern .basic-view .wrapper {
  padding: 4rem 1.5rem 6rem;
  margin-top: -3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.calc-modern .card,
.calc-modern .basic-view .wrapper .form,
.calc-modern .basic-view .wrapper .statistic,
.calc-modern .basic-view .wrapper .overview {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: auto;
  padding: 0;
  gap: 0;
  align-items: stretch;
}

.calc-modern .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-surface-soft);
  border-bottom: 1px solid var(--c-border);
}
.calc-modern .card-header h2,
.calc-modern .basic-view .wrapper .overview .card-header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0;
  padding: 0;
  background: transparent;
  background-color: transparent;
  text-align: left;
}
.calc-modern .card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color-medium-opacity-very-low);
  color: var(--brand-color-medium);
  font-size: 1.125rem;
}
.calc-modern .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

/* Inputs */
.calc-modern .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calc-modern .field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.calc-modern .currency-field {
  display: flex;
  align-items: stretch;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 0.625rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  overflow: hidden;
}
.calc-modern .currency-field:focus-within {
  border-color: var(--brand-color-medium);
  box-shadow: 0 0 0 4px rgba(0, 80, 157, 0.12);
}
.calc-modern .currency-field .currency-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-muted);
  background: var(--c-surface-soft);
  border-right: 1px solid var(--c-border);
}
.calc-modern .currency-field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-text);
  background: transparent;
  font-family: inherit;
}
.calc-modern .currency-field input::placeholder {
  color: #cbd5e1;
  font-weight: 400;
}
/* hide number spinners */
.calc-modern input[type="number"]::-webkit-outer-spin-button,
.calc-modern input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-modern input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Toggle */
.calc-modern .field-toggle {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--c-surface-soft);
  border: 1px solid var(--c-border);
  border-radius: 0.625rem;
}
.calc-modern .field-toggle label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: pointer;
  padding: 0;
}
.calc-modern .field-toggle .toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}
.calc-modern .field-toggle .toggle-hint {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 400;
  line-height: 1.3;
}
.calc-modern .toggle {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.calc-modern .toggle-input {
  appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.calc-modern .toggle-track {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.calc-modern .toggle-track::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.calc-modern .toggle-input:checked + .toggle-track {
  background: var(--brand-color-medium);
}
.calc-modern .toggle-input:checked + .toggle-track::after {
  transform: translateX(1.25rem);
}
.calc-modern .toggle-input:focus-visible + .toggle-track {
  box-shadow: 0 0 0 4px rgba(0, 80, 157, 0.18);
}

/* Result tiles */
.calc-modern .overview .card-body {
  gap: 1rem;
}
.calc-modern .result-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--c-surface-soft);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.calc-modern .result-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: currentColor;
  border-radius: 4px 0 0 4px;
}
.calc-modern .result-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.calc-modern .result-meta h3 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.calc-modern .result-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: currentColor;
}
.calc-modern .result-value {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  min-height: 2.25rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.calc-modern .result-value:empty::before {
  content: "—";
  color: #cbd5e1;
  font-weight: 400;
}
.calc-modern .result-profit {
  color: var(--c-profit);
}
.calc-modern .result-tax {
  color: var(--c-tax);
}

/* Donut */
.calc-modern .statistic .card-body {
  align-items: center;
  gap: 1.5rem;
}
.calc-modern .donut-wrapper {
  position: relative;
  width: 13rem;
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-modern .donut-wrapper .circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 8px 20px -8px rgba(15, 23, 42, 0.25);
  transition: background 0.4s ease;
}
.calc-modern .donut-hole {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  box-shadow: inset 0 0 0 1px var(--c-border);
}
.calc-modern .donut-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.calc-modern .donut-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.calc-modern .statistic .legend-area {
  width: 100%;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-modern .statistic .list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
.calc-modern .statistic .list:empty {
  display: none;
}
.calc-modern .statistic .list:empty + .empty-hint {
  display: block;
}
.calc-modern .empty-hint {
  display: none;
  text-align: center;
  color: var(--c-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  max-width: 18rem;
}
.calc-modern .statistic .list .item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--c-surface-soft);
  border-radius: 0.5rem;
  border: 1px solid var(--c-border);
  text-align: left;
  justify-content: flex-start;
}
.calc-modern .statistic .list .item .dot-wrapper {
  flex-grow: 0;
}
.calc-modern .statistic .list .item .dot-wrapper .dot {
  width: 0.625rem;
  height: 0.625rem;
}
.calc-modern .statistic .list .item h3,
.calc-modern .statistic .list .item .title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0;
}
.calc-modern.calculator .basic-view .wrapper .statistic .list .item.purchase .dot {
  background-color: var(--c-purchase);
}
.calc-modern.calculator .basic-view .wrapper .statistic .list .item.tax .dot {
  background-color: var(--c-tax);
}
.calc-modern.calculator .basic-view .wrapper .statistic .list .item.profit .dot {
  background-color: var(--c-profit);
}

/* Responsive */
@media (max-width: 75rem) {
  .calc-modern .basic-view .wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calc-modern .statistic {
    grid-column: span 2;
  }
}
@media (max-width: 48rem) {
  .calc-modern .top-headline-bg {
    padding: 4rem 1rem 5rem;
  }
  .calc-modern .top-headline-bg h1 {
    font-size: 2rem;
  }
  .calc-modern .top-headline-bg .subtitle {
    font-size: 1rem;
  }
  .calc-modern .basic-view .wrapper {
    grid-template-columns: minmax(0, 1fr);
    padding: 3rem 1rem 4rem;
    gap: 1.25rem;
  }
  .calc-modern .statistic {
    grid-column: auto;
  }
  .calc-modern .donut-wrapper {
    width: 11rem;
    height: 11rem;
  }
}
