@charset "UTF-8";
/*
Author: Melih Coban
Copyright 2025 Coban IT & Webservices
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0; }

html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth; }

img,
picture,
video,
canvas,
svg {
  max-width: 100%; }

input,
button,
textarea,
select {
  border: none;
  background: none;
  outline: none;
  white-space: nowrap; }

a {
  text-decoration: none; }

ul,
ol {
  list-style: none; }

a, button {
  cursor: pointer; }

a,
li,
h1, h2, h3, h4, h5, h6,
span,
p {
  color: #000; }

textarea::placeholder {
  white-space: normal; }

textarea {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif; }

[id] {
  scroll-margin-top: 120px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background-color: #fff; }

h1, h2, h3, h4, h5, h6 {
  color: #000;
  margin-bottom: 0.5rem;
  font-weight: 600; }

.text-primary {
  color: #0088e2; }

.text-primary-2 {
  color: #fff; }

.text-secondary {
  color: #000; }

.text-secondary-2 {
  color: #111; }

.bg-primary {
  background-color: #0088e2; }

.bg-primary-2 {
  background-color: #fff; }

.bg-secondary {
  background-color: #000; }

.bg-secondary-2 {
  background-color: #111; }

.p-1 {
  padding: 0.5rem; }

.p-2 {
  padding: 1rem; }

.p-3 {
  padding: 1.5rem; }

.pt-1 {
  padding-top: 0.5rem; }

.pt-2 {
  padding-top: 1rem; }

.pt-3 {
  padding-top: 1.5rem; }

.pb-1 {
  padding-bottom: 0.5rem; }

.pb-2 {
  padding-bottom: 1rem; }

.pb-3 {
  padding-bottom: 1.5rem; }

.pl-1 {
  padding-left: 0.5rem; }

.pl-2 {
  padding-left: 1rem; }

.pl-3 {
  padding-left: 1.5rem; }

.pr-1 {
  padding-right: 0.5rem; }

.pr-2 {
  padding-right: 1rem; }

.pr-3 {
  padding-right: 1.5rem; }

.m-1 {
  margin: 0.5rem; }

.m-2 {
  margin: 1rem; }

.m-3 {
  margin: 1.5rem; }

.mt-1 {
  margin-top: 0.5rem; }

.mt-2 {
  margin-top: 1rem; }

.mt-3 {
  margin-top: 1.5rem; }

.mb-1 {
  margin-bottom: 0.5rem; }

.mb-2 {
  margin-bottom: 1rem; }

.mb-3 {
  margin-bottom: 1.5rem; }

.ml-1 {
  margin-left: 0.5rem; }

.ml-2 {
  margin-left: 1rem; }

.ml-3 {
  margin-left: 1.5rem; }

.mr-1 {
  margin-right: 0.5rem; }

.mr-2 {
  margin-right: 1rem; }

.mr-3 {
  margin-right: 1.5rem; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center; }

.grid-center {
  display: grid;
  justify-content: center;
  align-items: center; }

.flex-sbt-center {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.grid-sbt-center {
  display: grid;
  justify-content: space-between;
  align-items: center; }

.shadow-white {
  box-shadow: 1px 1px 10px 1px white; }

.shadow-black {
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5); }

.rounded {
  border-radius: 5px; }

.outline-white {
  outline: 1px solid white; }

.outline-black {
  outline: 1px solid black; }

.no-select {
  user-select: none; }

nav {
  position: sticky;
  top: 0;
  z-index: 3; }

.desktop-nav, .mobile-nav {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.mobile-nav {
  display: none; }

.logo {
  padding-top: 7px;
  padding-bottom: 7px; }

.logo img {
  max-width: 100px; }

.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  font-size: 1.2rem; }

.menu li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease; }
  .menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: width 0.3s ease; }
  .menu li a:hover {
    color: #000; }
    .menu li a:hover::after {
      width: 100%; }

.hamburger-icon {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.1rem; }

.hamburger-line {
  width: 31px;
  height: 2px;
  background-color: #fff; }

.hamburger-line:nth-child(2) {
  width: 30px; }

.hamburger-menu {
  margin-left: -0.75rem; }

.menu-mobile {
  position: fixed;
  left: -80vw;
  width: 75vw;
  height: 100vh;
  background-color: #fff;
  font-size: 1rem;
  display: grid;
  align-content: start;
  line-height: 3.2rem;
  text-align: start;
  box-shadow: 1px 1px 10px #666;
  z-index: 4;
  transition: left 0.5s ease-in-out; }

.mobile-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600; }

.mobile-title-div {
  margin-right: 0.15rem; }

.hexa {
  color: #000; }

.menu-mobile.active {
  left: 0; }

.menu-mobile > div {
  width: 75vw; }

.mobile-menu-upper {
  background-color: #0088e2; }

#closeMenu {
  color: #fff;
  text-align: end;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  margin-bottom: -3rem; }

.mobile-rights {
  margin-left: 1rem;
  margin-top: -2rem; }

.mobile-rights a {
  color: #fff;
  text-decoration: underline;
  margin-right: 1rem;
  font-size: 12px; }

.mobile-menu-main li {
  border-bottom: solid 1px #0088e2;
  font-weight: 500; }

.mobile-menu-main li a {
  margin-left: 1rem; }

.mobile-menu-main li:last-child {
  border-bottom: none; }

.user-profile {
  margin-left: 1rem;
  display: grid; }

.register-link {
  text-decoration: underline;
  color: #fff; }

.profile-picture {
  width: 65px;
  height: 65px;
  border-radius: 65px;
  overflow: hidden;
  cursor: pointer; }

.profile-picture img {
  background: #fff;
  transition: filter 0.3s ease; }
  .profile-picture img:hover {
    filter: brightness(50%); }

.user-profile p {
  color: #fff; }

.noSession {
  margin-top: 4.7rem; }

@media screen and (max-width: 576px) {
  .desktop-nav {
    display: none; }

  .mobile-nav {
    display: flex;
    max-height: 60px; }

  .profile-picture {
    width: 75px;
    height: 75px;
    border-radius: 75px; } }
main {
  flex: 1; }

@media screen and (max-width: 576px) {
  main {
    min-height: 450px; } }
footer {
  display: grid; }

.info {
  display: flex;
  min-height: 300px; }

.footer-info {
  flex: 1;
  margin-right: 1rem; }

.footer-img {
  transition: filter 0.3s ease; }
  .footer-img:hover {
    filter: brightness(50%); }

.footer-title,
.footer-hr,
footer a,
footer h3,
footer span {
  color: #fff; }

footer a h3 {
  transition: color 0.3s ease; }
  footer a h3:hover {
    color: #0088e2; }

.social-icon {
  font-size: 2rem;
  color: #fff;
  transition: color 0.3s ease; }
  .social-icon:hover {
    color: #0088e2; }

.copyright {
  text-align: center;
  font-weight: 600;
  padding-bottom: 1rem; }

@media screen and (max-width: 576px) {
  .info {
    display: grid; }

  .footer-info {
    padding-bottom: 2rem; }

  .copyright {
    padding-right: 1rem; } }
.payment-icons-wrapper {
  display: grid;
  row-gap: 10px; }

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center; }

.payment-icon {
  height: 100%;
  max-width: 55px;
  object-fit: contain;
  vertical-align: middle; }

.footer-info:nth-child(6) img {
  max-width: 300px;
  display: block;
  margin: 0 auto; }

.go-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background-color: #0088e2;
  width: 65px;
  height: 65px;
  border-radius: 65px;
  display: grid;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, background-color 0.3s ease; }
  .go-to-top span {
    color: #fff; }
  .go-to-top:hover {
    background-color: #000; }
  .go-to-top.visible {
    opacity: 1;
    pointer-events: all; }
  @media (max-width: 480px) {
    .go-to-top {
      width: 45px;
      height: 45px;
      border-radius: 45px;
      font-size: 1.2rem; } }

.button-primary {
  background: #0088e2;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease; }
  .button-primary a {
    color: inherit;
    text-decoration: none; }
  .button-primary:hover {
    color: #0088e2;
    background: #fff; }
    .button-primary:hover a {
      color: inherit; }

.button-primary-2 {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease; }
  .button-primary-2 a {
    color: inherit;
    text-decoration: none; }
  .button-primary-2:hover {
    color: #fff;
    background: #000; }
    .button-primary-2:hover a {
      color: inherit; }

.button-secondary {
  background: #000;
  color: #0088e2;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease; }
  .button-secondary a {
    color: inherit;
    text-decoration: none; }
  .button-secondary:hover {
    color: #000;
    background: #0088e2; }
    .button-secondary:hover a {
      color: inherit; }

.button-secondary-2 {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease; }
  .button-secondary-2 a {
    color: inherit;
    text-decoration: none; }
  .button-secondary-2:hover {
    color: #000;
    background: #fff; }
    .button-secondary-2:hover a {
      color: inherit; }

.button-tertiary {
  background: #0088e2;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease; }
  .button-tertiary a {
    color: inherit;
    text-decoration: none; }
  .button-tertiary:hover {
    background: #000; }
    .button-tertiary:hover a {
      color: inherit; }

.hero-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Server Icons */ }
  .hero-section .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 50%, #2d3748 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; }
  .hero-section .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 136, 226, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: gradientShift 20s ease-in-out infinite; }
@keyframes gradientShift {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0.8; } }
  .hero-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative; }
  .hero-section .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0; }
  .hero-section .hero-text {
    color: white; }
  .hero-section .swiss-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both; }
    .hero-section .swiss-badge span {
      color: #fff; }
  .hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.4s both; }
  .hero-section .subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both; }
  .hero-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both; }
  .hero-section .feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease; }
  .hero-section .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 136, 226, 0.3); }
  .hero-section .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0088e2, #0066b3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem; }
  .hero-section .feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white; }
  .hero-section .feature p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4; }
  .hero-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1s both; }
  .hero-section .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; }
  .hero-section .btn-primary {
    background: linear-gradient(135deg, #0088e2, #0066b3);
    color: white; }
  .hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 136, 226, 0.3); }
  .hero-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); }
  .hero-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px); }
  .hero-section .hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .hero-section .cloud-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .hero-section .server-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0088e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 136, 226, 0.3); }
  .hero-section .server-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s; }
  .hero-section .server-icon:nth-child(2) {
    top: 15%;
    right: 25%;
    animation-delay: -1s; }
  .hero-section .server-icon:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: -2s; }
  .hero-section .server-icon:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: -3s; }
  .hero-section .server-icon:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: -4s; }
  .hero-section .server-icon:nth-child(6) {
    top: 45%;
    right: 15%;
    animation-delay: -5s; }
@keyframes float {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-15px); } }
  .hero-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .hero-section .floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 136, 226, 0.6);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
    animation-fill-mode: both;
    opacity: 0; }
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0); }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1); }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1); }
  100% {
    opacity: 0;
    transform: translateY(0vh) scale(0); } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
  @media (max-width: 768px) {
    .hero-section .hero-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center; }
    .hero-section .hero-visual {
      height: 400px;
      order: -1; }
    .hero-section .container {
      padding: 0 1rem; }
    .hero-section .features-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 400px;
      margin: 0 auto 3rem; }
    .hero-section .feature {
      text-align: center;
      padding: 1.25rem;
      min-height: auto; }
    .hero-section .feature-icon {
      margin: 0 auto 1rem; }
    .hero-section .cta-buttons {
      justify-content: center; }
    .hero-section .btn {
      padding: 0.875rem 1.5rem;
      font-size: 0.9rem; }
    .hero-section h1 {
      text-align: center; }
    .hero-section .subtitle {
      text-align: center;
      margin: 0 auto 2rem; } }
  @media (max-width: 580px) {
    .hero-section .features-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 100%; }
    .hero-section .feature {
      padding: 1.5rem 1rem;
      margin-bottom: 0.5rem; }
    .hero-section .feature h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem; }
    .hero-section .feature p {
      font-size: 0.95rem;
      line-height: 1.5; } }
  @media (max-width: 480px) {
    .hero-section .hero-visual {
      height: 300px; }
    .hero-section .server-icon {
      width: 40px;
      height: 40px;
      font-size: 1.2rem; }
    .hero-section .container {
      padding: 0 0.75rem; }
    .hero-section .feature {
      padding: 1.25rem 0.75rem; } }

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, black 70%, white 0%); }

/* Cloud with nodes animation */
.logo-container {
  position: relative;
  width: 100px;
  height: 70px; }

.logo-cloud {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 15px;
  opacity: 0;
  animation: cloudAppear 2.3s ease-out forwards; }

.logo-cloud::before,
.logo-cloud::after {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%; }

.logo-cloud::before {
  width: 25px;
  height: 25px;
  top: -12px;
  left: 10px; }

.logo-cloud::after {
  width: 35px;
  height: 35px;
  top: -15px;
  right: 5px; }

/* Connection nodes */
.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  opacity: 0; }

.node-1 {
  top: 10px;
  left: 10px;
  animation: nodeAppear 2.3s ease-out 0.3s forwards; }

.node-2 {
  top: 10px;
  right: 10px;
  animation: nodeAppear 2.3s ease-out 0.5s forwards; }

.node-3 {
  bottom: 10px;
  left: 15px;
  animation: nodeAppear 2.3s ease-out 0.7s forwards; }

.node-4 {
  bottom: 10px;
  right: 15px;
  animation: nodeAppear 2.3s ease-out 0.9s forwards; }

/* Connection lines */
.connection {
  position: absolute;
  height: 1px;
  background: rgba(0, 212, 255, 0.6);
  transform-origin: left;
  transform: scaleX(0); }

.conn-1 {
  top: 35px;
  left: 18px;
  width: 30px;
  animation: lineGrow 2.3s ease-out 1.1s forwards; }

.conn-2 {
  top: 35px;
  right: 18px;
  width: 25px;
  animation: lineGrow 2.3s ease-out 1.3s forwards; }

/* Animations */
@keyframes cloudAppear {
  0% {
    opacity: 0;
    transform: scale(0.5); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes nodeAppear {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes lineGrow {
  0% {
    transform: scaleX(0); }
  100% {
    transform: scaleX(1); } }
/* Company Name */
.company-name {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: textSlideIn 2.3s ease-out 0.4s forwards; }

.company-sub {
  color: #8b5cf6;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: textSlideIn 2.3s ease-out 0.7s forwards; }

@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/* Loading bar */
.progress-line {
  width: 200px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 1rem; }

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
  animation: progressFill 2.3s ease-out forwards; }

@keyframes progressFill {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
/* Exit animation */
.loader.complete {
  animation: fadeOut 0.4s ease-out forwards; }

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(1.1); } }
/* Responsive */
@media (max-width: 768px) {
  .company-name {
    font-size: 1.5rem; }

  .logo-container {
    width: 80px;
    height: 60px; }

  .progress-line {
    width: 150px; } }
.auth-page {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden; }

.auth-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column; }
  .auth-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); }
  .auth-container.register-mode {
    max-width: 650px; }
    @media (min-width: 1200px) {
      .auth-container.register-mode {
        max-width: 750px; } }

.auth-header {
  background: #f8f9fa;
  padding: 30px 30px 20px 30px;
  text-align: center;
  border-bottom: 1px solid #e1e5e9;
  flex-shrink: 0; }

.auth-toggle {
  display: flex;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e1e5e9;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative; }

.toggle-btn {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2; }
  .toggle-btn.active {
    color: #fff; }

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #0088e2;
  border-radius: 10px;
  transition: transform 0.3s ease;
  z-index: 1; }
  .toggle-slider.register {
    transform: translateX(100%); }

.auth-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700; }

.auth-subtitle {
  color: #666;
  font-size: 16px; }

.auth-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
  min-height: 0; }
  @media (min-width: 1200px) {
    .auth-body {
      padding: 40px; } }

.form-container {
  position: relative;
  overflow: hidden; }

.auth-form {
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateX(0); }
  .auth-form.hidden {
    opacity: 0;
    transform: translateX(-20px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none; }

.form-group {
  margin-bottom: 20px; }
  .form-group.focused .form-label {
    color: #0088e2;
    transform: translateY(-2px); }

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease; }

.form-input, .form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box; }
  .form-input:focus, .form-select:focus {
    outline: none;
    border-color: #0088e2;
    box-shadow: 0 0 0 3px rgba(0, 136, 226, 0.1);
    transform: translateY(-2px); }
  .form-input::placeholder, .form-select::placeholder {
    color: #666; }

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px; }

.form-row {
  display: flex;
  gap: 15px; }
  .form-row .form-group {
    flex: 1;
    min-width: 0; }

.form-row-3 {
  display: flex;
  gap: 10px; }
  .form-row-3 .form-group {
    flex: 1;
    min-width: 0; }
    .form-row-3 .form-group:first-child {
      flex: 2; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0088e2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-sizing: border-box; }
  .submit-btn:hover {
    background: #0069af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 226, 0.3); }
  .submit-btn:active {
    transform: translateY(0); }

@media (max-width: 1199px) and (min-width: 768px) {
  .auth-container {
    max-width: 450px; }
    .auth-container.register-mode {
      max-width: 600px; }

  .auth-page {
    padding: 30px; } }
@media (max-width: 767px) {
  .auth-page {
    padding: 15px;
    align-items: flex-start;
    min-height: 100vh;
    overflow: visible; }

  .auth-container {
    max-height: none;
    margin: 20px 0;
    min-height: auto; }
    .auth-container.register-mode {
      max-width: 100%; }

  .form-row, .form-row-3 {
    flex-direction: column;
    gap: 0; }

  .auth-header {
    padding: 20px 20px 15px 20px; }

  .auth-body {
    padding: 20px;
    overflow-y: visible;
    max-height: none; }

  .auth-title {
    font-size: 24px; }

  .auth-subtitle {
    font-size: 14px; }

  .toggle-btn {
    padding: 10px 15px;
    font-size: 14px; }

  .form-input, .form-select {
    padding: 14px 16px; }

  .submit-btn {
    padding: 14px;
    font-size: 15px; } }
@media (max-width: 480px) {
  .auth-page {
    padding: 10px; }

  .auth-header {
    padding: 15px 15px 10px 15px; }

  .auth-body {
    padding: 15px; }

  .auth-title {
    font-size: 22px; }

  .toggle-btn {
    padding: 8px 12px;
    font-size: 13px; }

  .form-input, .form-select {
    padding: 12px 14px;
    font-size: 15px; }

  .submit-btn {
    padding: 12px;
    font-size: 14px; }

  .form-label {
    font-size: 13px; } }
@media (max-width: 320px) {
  .auth-page {
    padding: 8px; }

  .auth-container {
    border-radius: 12px;
    margin: 8px 0; }

  .auth-header {
    padding: 12px 12px 8px 12px; }

  .auth-body {
    padding: 12px; }

  .auth-title {
    font-size: 20px; }

  .toggle-btn {
    padding: 6px 8px;
    font-size: 12px; }

  .form-input, .form-select {
    padding: 10px 12px;
    font-size: 14px; }

  .submit-btn {
    padding: 10px;
    font-size: 13px; } }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.who-are-we {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; }
  .who-are-we .hexacloud {
    margin-bottom: 40px;
    margin-bottom: 0.8rem;
    margin-top: -3rem; }
    .who-are-we .hexacloud p {
      font-size: 8rem;
      letter-spacing: 2rem;
      font-weight: bold;
      color: #000; }
      .who-are-we .hexacloud p .cloud-text {
        color: #0088e2; }
  .who-are-we .quick-intro span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    display: inline-block; }
  @media (max-width: 500px) {
    .who-are-we .hexacloud {
      margin-top: -1rem; } }

.our-services {
  padding: 60px 20px;
  background-color: #f8f9fa; }
  .our-services .web, .our-services .infra, .our-services .cloud {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
    .our-services .web .package, .our-services .infra .package, .our-services .cloud .package {
      min-width: 257px; }
      .our-services .web .package p, .our-services .infra .package p, .our-services .cloud .package p {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0088e2;
        border: 2px solid #0088e2;
        padding: 15px 25px;
        border-radius: 8px;
        text-align: center; }
    .our-services .web .package-desc, .our-services .infra .package-desc, .our-services .cloud .package-desc {
      flex: 1; }
      .our-services .web .package-desc span, .our-services .infra .package-desc span, .our-services .cloud .package-desc span {
        color: #666;
        line-height: 1.6; }

.offers {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; }
  .offers .web-offers, .offers .infra-offers, .offers .cloud-offers {
    margin-bottom: 60px;
    position: relative; }
    .offers .web-offers > p, .offers .infra-offers > p, .offers .cloud-offers > p {
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      text-align: center;
      margin-bottom: 40px; }
    .offers .web-offers .prc-offers, .offers .web-offers .buc-offers, .offers .infra-offers .prc-offers, .offers .infra-offers .buc-offers, .offers .cloud-offers .prc-offers, .offers .cloud-offers .buc-offers {
      position: relative;
      overflow: hidden;
      margin-bottom: 30px; }
      .offers .web-offers .prc-offers .card-container, .offers .web-offers .buc-offers .card-container, .offers .infra-offers .prc-offers .card-container, .offers .infra-offers .buc-offers .card-container, .offers .cloud-offers .prc-offers .card-container, .offers .cloud-offers .buc-offers .card-container {
        display: flex;
        transition: transform 0.3s ease;
        gap: 20px; }
        .offers .web-offers .prc-offers .card-container .card, .offers .web-offers .buc-offers .card-container .card, .offers .infra-offers .prc-offers .card-container .card, .offers .infra-offers .buc-offers .card-container .card, .offers .cloud-offers .prc-offers .card-container .card, .offers .cloud-offers .buc-offers .card-container .card {
          min-width: calc(33.333% - 14px);
          background: #fff;
          border-radius: 12px;
          padding: 30px 20px;
          text-align: center;
          transition: all 0.3s ease;
          border: 1px solid #e1e5e9; }
          .offers .web-offers .prc-offers .card-container .card .customertype, .offers .web-offers .buc-offers .card-container .card .customertype, .offers .infra-offers .prc-offers .card-container .card .customertype, .offers .infra-offers .buc-offers .card-container .card .customertype, .offers .cloud-offers .prc-offers .card-container .card .customertype, .offers .cloud-offers .buc-offers .card-container .card .customertype {
            margin-bottom: 15px; }
            .offers .web-offers .prc-offers .card-container .card .customertype span, .offers .web-offers .buc-offers .card-container .card .customertype span, .offers .infra-offers .prc-offers .card-container .card .customertype span, .offers .infra-offers .buc-offers .card-container .card .customertype span, .offers .cloud-offers .prc-offers .card-container .card .customertype span, .offers .cloud-offers .buc-offers .card-container .card .customertype span {
              background: #0088e2;
              color: #fff;
              padding: 5px 15px;
              border-radius: 20px;
              font-size: 0.9rem;
              font-weight: 500; }
          .offers .web-offers .prc-offers .card-container .card .card-title, .offers .web-offers .buc-offers .card-container .card .card-title, .offers .infra-offers .prc-offers .card-container .card .card-title, .offers .infra-offers .buc-offers .card-container .card .card-title, .offers .cloud-offers .prc-offers .card-container .card .card-title, .offers .cloud-offers .buc-offers .card-container .card .card-title {
            margin-bottom: 20px; }
            .offers .web-offers .prc-offers .card-container .card .card-title span, .offers .web-offers .buc-offers .card-container .card .card-title span, .offers .infra-offers .prc-offers .card-container .card .card-title span, .offers .infra-offers .buc-offers .card-container .card .card-title span, .offers .cloud-offers .prc-offers .card-container .card .card-title span, .offers .cloud-offers .buc-offers .card-container .card .card-title span {
              font-size: 1.3rem;
              font-weight: bold;
              color: #000; }
          .offers .web-offers .prc-offers .card-container .card .card-icon, .offers .web-offers .buc-offers .card-container .card .card-icon, .offers .infra-offers .prc-offers .card-container .card .card-icon, .offers .infra-offers .buc-offers .card-container .card .card-icon, .offers .cloud-offers .prc-offers .card-container .card .card-icon, .offers .cloud-offers .buc-offers .card-container .card .card-icon {
            margin-bottom: 20px; }
            .offers .web-offers .prc-offers .card-container .card .card-icon i, .offers .web-offers .buc-offers .card-container .card .card-icon i, .offers .infra-offers .prc-offers .card-container .card .card-icon i, .offers .infra-offers .buc-offers .card-container .card .card-icon i, .offers .cloud-offers .prc-offers .card-container .card .card-icon i, .offers .cloud-offers .buc-offers .card-container .card .card-icon i {
              font-size: 2.5rem;
              color: #0088e2; }
          .offers .web-offers .prc-offers .card-container .card .card-desc, .offers .web-offers .buc-offers .card-container .card .card-desc, .offers .infra-offers .prc-offers .card-container .card .card-desc, .offers .infra-offers .buc-offers .card-container .card .card-desc, .offers .cloud-offers .prc-offers .card-container .card .card-desc, .offers .cloud-offers .buc-offers .card-container .card .card-desc {
            margin-bottom: 25px; }
            .offers .web-offers .prc-offers .card-container .card .card-desc span, .offers .web-offers .buc-offers .card-container .card .card-desc span, .offers .infra-offers .prc-offers .card-container .card .card-desc span, .offers .infra-offers .buc-offers .card-container .card .card-desc span, .offers .cloud-offers .prc-offers .card-container .card .card-desc span, .offers .cloud-offers .buc-offers .card-container .card .card-desc span {
              color: #666;
              line-height: 1.5; }
          .offers .web-offers .prc-offers .card-container .card .card-price, .offers .web-offers .buc-offers .card-container .card .card-price, .offers .infra-offers .prc-offers .card-container .card .card-price, .offers .infra-offers .buc-offers .card-container .card .card-price, .offers .cloud-offers .prc-offers .card-container .card .card-price, .offers .cloud-offers .buc-offers .card-container .card .card-price {
            margin-bottom: 25px; }
            .offers .web-offers .prc-offers .card-container .card .card-price span, .offers .web-offers .buc-offers .card-container .card .card-price span, .offers .infra-offers .prc-offers .card-container .card .card-price span, .offers .infra-offers .buc-offers .card-container .card .card-price span, .offers .cloud-offers .prc-offers .card-container .card .card-price span, .offers .cloud-offers .buc-offers .card-container .card .card-price span {
              font-size: 1.2rem;
              font-weight: bold;
              color: #000; }
          .offers .web-offers .prc-offers .card-container .card .card-button button, .offers .web-offers .buc-offers .card-container .card .card-button button, .offers .infra-offers .prc-offers .card-container .card .card-button button, .offers .infra-offers .buc-offers .card-container .card .card-button button, .offers .cloud-offers .prc-offers .card-container .card .card-button button, .offers .cloud-offers .buc-offers .card-container .card .card-button button {
            background: #0088e2;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease; }
            .offers .web-offers .prc-offers .card-container .card .card-button button:hover, .offers .web-offers .buc-offers .card-container .card .card-button button:hover, .offers .infra-offers .prc-offers .card-container .card .card-button button:hover, .offers .infra-offers .buc-offers .card-container .card .card-button button:hover, .offers .cloud-offers .prc-offers .card-container .card .card-button button:hover, .offers .cloud-offers .buc-offers .card-container .card .card-button button:hover {
              background: #0069af;
              transform: translateY(-2px); }
    .offers .web-offers .chevron-left, .offers .web-offers .chevron-right, .offers .infra-offers .chevron-left, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-left, .offers .cloud-offers .chevron-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #0088e2;
      color: #fff;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease; }
      .offers .web-offers .chevron-left:hover, .offers .web-offers .chevron-right:hover, .offers .infra-offers .chevron-left:hover, .offers .infra-offers .chevron-right:hover, .offers .cloud-offers .chevron-left:hover, .offers .cloud-offers .chevron-right:hover {
        background: #0069af;
        transform: translateY(-50%) scale(1.1); }
    .offers .web-offers .chevron-left, .offers .infra-offers .chevron-left, .offers .cloud-offers .chevron-left {
      left: -100px;
      margin-top: 3rem; }
    .offers .web-offers .chevron-right, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-right {
      right: -100px;
      margin-top: 3rem; }
    @media (max-width: 1400px) {
      .offers .web-offers .chevron-left, .offers .infra-offers .chevron-left, .offers .cloud-offers .chevron-left {
        left: -50px; }
      .offers .web-offers .chevron-right, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-right {
        right: -50px; } }
    @media (max-width: 1200px) {
      .offers .web-offers .chevron-left, .offers .infra-offers .chevron-left, .offers .cloud-offers .chevron-left {
        left: -40px; }
      .offers .web-offers .chevron-right, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-right {
        right: -40px; } }
    @media (max-width: 768px) {
      .offers .web-offers .chevron-left, .offers .infra-offers .chevron-left, .offers .cloud-offers .chevron-left {
        left: -30px; }
      .offers .web-offers .chevron-right, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-right {
        right: -30px; } }
    @media (max-width: 480px) {
      .offers .web-offers .chevron-left, .offers .infra-offers .chevron-left, .offers .cloud-offers .chevron-left {
        display: none; }
      .offers .web-offers .chevron-right, .offers .infra-offers .chevron-right, .offers .cloud-offers .chevron-right {
        display: none; } }

.customers {
  padding: 60px 20px;
  background: #f8f9fa;
  display: flex;
  gap: 40px; }
  .customers #prc {
    margin-left: 14rem; }
  .customers #buc {
    margin-right: 14rem; }
  .customers .prc, .customers .buc {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
    .customers .prc p, .customers .buc p {
      font-size: 1.5rem;
      font-weight: bold;
      color: #0088e2;
      margin-bottom: 20px; }
    .customers .prc span, .customers .buc span {
      color: #666;
      line-height: 1.6; }
  @media (max-width: 580px) {
    .customers #prc, .customers #buc {
      margin: 0 auto; } }

.trusters-looped {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  overflow: hidden; }
  .trusters-looped h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }
  .trusters-looped .looped-logos {
    display: flex;
    animation: scroll-logos 20s linear infinite;
    gap: 60px; }
    .trusters-looped .looped-logos img {
      height: 60px;
      width: auto;
      opacity: 0.7;
      transition: opacity 0.3s ease;
      flex-shrink: 0; }
      .trusters-looped .looped-logos img:hover {
        opacity: 1; }

@keyframes scroll-logos {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
.faq {
  padding: 20px 20px 80px 20px;
  max-width: 800px;
  margin: 0 auto; }
  .faq .accordion {
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 20px; }
    .faq .accordion .accordion-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      cursor: pointer; }
      .faq .accordion .accordion-title p {
        font-size: 1.1rem;
        font-weight: 500;
        color: #000; }
      .faq .accordion .accordion-title .accordion-icon {
        font-size: 1.5rem;
        color: #0088e2;
        transition: transform 0.3s ease; }
      .faq .accordion .accordion-title.active .accordion-icon {
        transform: rotate(45deg); }
    .faq .accordion .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 1s ease, opacity 1s ease, padding 1s ease; }
      .faq .accordion .accordion-content span {
        display: block;
        padding: 0;
        color: #666;
        line-height: 1.6; }
      .faq .accordion .accordion-content.active {
        max-height: 350px;
        opacity: 1; }
        .faq .accordion .accordion-content.active span {
          padding-bottom: 20px; }

.references {
  padding: 80px 20px;
  background: #f8f9fa; }
  .references .reference {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    align-items: center; }
    .references .reference:nth-child(even) {
      flex-direction: row-reverse; }
    .references .reference .reference-desc {
      flex: 1; }
      .references .reference .reference-desc p {
        font-size: 1.8rem;
        font-weight: bold;
        color: #0088e2;
        margin-bottom: 15px; }
      .references .reference .reference-desc span {
        color: #666;
        line-height: 1.6; }
    .references .reference .reference-img {
      flex: 1; }
      .references .reference .reference-img img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

.punchline {
  padding: 60px 20px;
  text-align: center;
  background: #0088e2; }
  .punchline p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto; }

.open-hours {
  padding: 40px 20px;
  text-align: center;
  background: #111; }
  .open-hours p {
    font-size: 1.3rem;
    color: #0088e2;
    margin-bottom: 10px;
    font-weight: bold; }
  .open-hours span {
    color: #fff;
    line-height: 1.6; }

.get-in-touch {
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto; }
  .get-in-touch .contact-form .formgroup-contact {
    margin-bottom: 25px; }
    .get-in-touch .contact-form .formgroup-contact label {
      display: block;
      margin-bottom: 8px;
      color: #000;
      font-weight: 500; }
    .get-in-touch .contact-form .formgroup-contact input, .get-in-touch .contact-form .formgroup-contact textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #e1e5e9;
      border-radius: 6px;
      font-size: 1rem;
      transition: border-color 0.3s ease; }
      .get-in-touch .contact-form .formgroup-contact input:focus, .get-in-touch .contact-form .formgroup-contact textarea:focus {
        outline: none;
        border-color: #0088e2; }
    .get-in-touch .contact-form .formgroup-contact textarea {
      resize: vertical;
      min-height: 120px; }

@media (max-width: 768px) {
  .who-are-we {
    padding: 40px 15px; }
    .who-are-we .hexacloud p {
      font-size: 3.6rem;
      letter-spacing: normal; }
    .who-are-we .quick-intro span {
      font-size: 1rem; }

  .our-services .web, .our-services .infra, .our-services .cloud {
    flex-direction: column;
    text-align: center;
    gap: 20px; }
    .our-services .web .package, .our-services .infra .package, .our-services .cloud .package {
      min-width: 200px; }
      .our-services .web .package p, .our-services .infra .package p, .our-services .cloud .package p {
        font-size: 1.2rem; }

  .offers {
    padding: 40px 15px; }
    .offers .web-offers > p, .offers .infra-offers > p, .offers .cloud-offers > p {
      font-size: 1.5rem; }
    .offers .web-offers .prc-offers .card-container .card, .offers .web-offers .buc-offers .card-container .card, .offers .infra-offers .prc-offers .card-container .card, .offers .infra-offers .buc-offers .card-container .card, .offers .cloud-offers .prc-offers .card-container .card, .offers .cloud-offers .buc-offers .card-container .card {
      min-width: 100%; }
    .offers .chevron-left, .offers .chevron-right {
      display: none; }

  .bullet-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px; }
    .bullet-container .bullet {
      width: 10px;
      height: 10px;
      background-color: #ccc;
      border-radius: 50%;
      transition: background-color 0.3s; }
      .bullet-container .bullet.active {
        background-color: #0088e2; }

  .customers {
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px; }

  .trusters-looped {
    padding: 40px 15px; }
    .trusters-looped h1 {
      font-size: 1.5rem; }
    .trusters-looped .looped-logos img {
      height: 40px; }

  .references {
    padding: 40px 15px; }
    .references .reference {
      flex-direction: column !important;
      text-align: center;
      gap: 25px; }
      .references .reference .reference-desc p {
        font-size: 1.4rem; }

  .punchline {
    padding: 40px 15px; }
    .punchline p {
      font-size: 1.2rem; }

  .get-in-touch {
    padding: 40px 15px; } }
@media (max-width: 480px) {
  .who-are-we .hexacloud p {
    font-size: 2.6rem;
    letter-spacing: 1rem;
    margin-left: 0.3rem; }

  .our-services .web, .infra, .cloud {
    padding: 20px 15px; }

  .offers .web-offers > p,
  .offers .infra-offers > p,
  .offers .cloud-offers > p {
    font-size: 1.3rem; } }
@media (max-width: 415px) {
  .who-are-we .hexacloud p {
    letter-spacing: 0.7rem;
    margin-left: 0.75rem; } }
@media (max-width: 400px) {
  .who-are-we .hexacloud p {
    letter-spacing: 0.5rem;
    margin-left: 0.6rem; } }
.contact-here {
  color: #0088e2;
  text-decoration: underline; }

.legal-page {
  background-color: #f8f9fa;
  color: #333;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.7; }
  .legal-page h2, .legal-page h3, .legal-page h4 {
    color: #111;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600; }
  .legal-page h2:first-child {
    margin-top: -1rem; }
  .legal-page p {
    margin-bottom: 1rem; }
  .legal-page ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem; }
    .legal-page ul li {
      margin-bottom: 0.5rem; }
  .legal-page a {
    color: #0088e2;
    text-decoration: underline; }
    .legal-page a:hover {
      text-decoration: none;
      color: #0069af; }
  .legal-page hr {
    border: none;
    border-top: 1px solid #e1e5e9;
    margin: 2rem 0; }
  .legal-page p:last-child {
    margin-bottom: 0; }

.about-page section {
  padding: 4rem 1rem;
  border-bottom: 1px solid #e1e5e9;
  background: #fff; }
  .about-page section:nth-child(even) {
    background: #f8f9fa; }
  .about-page section h2 {
    color: #000;
    margin-bottom: 2rem; }
  .about-page section .container {
    max-width: 1100px;
    margin: 0 auto; }
.about-page .jobtitle {
  color: #0088e2; }
.about-page .our-leader .leader-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem; }
  .about-page .our-leader .leader-box .leader-photo {
    width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .about-page .our-leader .leader-box .leader-text {
    flex: 1; }
    .about-page .our-leader .leader-box .leader-text p {
      color: #333; }
.about-page .our-team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; }
  .about-page .our-team .team-grid .team-member {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: grid;
    justify-items: center; }
    .about-page .our-team .team-grid .team-member img {
      margin-bottom: 1rem; }
      .about-page .our-team .team-grid .team-member img:hover {
        cursor: default; }
    .about-page .our-team .team-grid .team-member h4 {
      margin-bottom: 0.2rem; }
    .about-page .our-team .team-grid .team-member p {
      color: #666; }
.about-page .our-locations ul, .about-page .open-jobs ul, .about-page .buq-queries ul {
  list-style: none;
  padding: 0; }
  .about-page .our-locations ul li, .about-page .open-jobs ul li, .about-page .buq-queries ul li {
    margin-bottom: 0.5rem;
    color: #333; }
.about-page .job-list {
  display: grid;
  gap: 1rem; }
.about-page .job-list li:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer; }
.about-page .job-list a:last-child {
  text-decoration: underline;
  color: #0088e2; }
  .about-page .job-list a:last-child:hover {
    color: #000; }

.job-details-page {
  padding: 2rem 1rem; }
  @media screen and (min-width: 992px) {
    .job-details-page {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .job-details-page .job-content-wrapper {
        display: flex;
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
        align-items: stretch; }
      .job-details-page .job-header,
      .job-details-page .job-description {
        flex: 1;
        display: flex;
        flex-direction: column; }
      .job-details-page .job-header {
        max-width: 40%; }
      .job-details-page .job-description {
        max-width: 60%; }
      .job-details-page .job-apply {
        margin-top: auto;
        text-align: center;
        padding-top: 2rem; } }
  .job-details-page .job-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem; }
    .job-details-page .job-header h1 {
      margin-top: 0;
      color: #0088e2; }
    .job-details-page .job-header p {
      margin: 0.5rem 0;
      color: #333; }
  .job-details-page .job-description {
    margin-bottom: 2rem; }
    .job-details-page .job-description h2 {
      color: #000; }
    .job-details-page .job-description p {
      color: #666;
      margin: 0 0 1.5rem 0;
      line-height: 1.6; }

.application-form-page {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto; }
  .application-form-page h1 {
    color: #0088e2;
    margin-bottom: 2rem; }
  .application-form-page .form-group {
    margin-bottom: 1.5rem; }
    .application-form-page .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #000; }
    .application-form-page .form-group input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e1e5e9;
      border-radius: 4px; }
  .application-form-page .file-list {
    margin-top: 0.5rem;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: #666; }
    .application-form-page .file-list li {
      margin-bottom: 0.3rem;
      list-style-type: disc; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5); }

.modal.hidden {
  display: none; }

.modal-content {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px; }

.close {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 1.5rem;
  cursor: pointer; }

.bewerbungsportal-page {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
  color: #333; }
  .bewerbungsportal-page h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #111; }
  .bewerbungsportal-page .job-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px; }
    .bewerbungsportal-page .job-list li {
      background-color: #fff;
      border: 1px solid #e1e5e9;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer; }
      .bewerbungsportal-page .job-list li:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }
      .bewerbungsportal-page .job-list li .jobtitle {
        font-size: 1.3rem;
        font-weight: 600;
        color: #0088e2;
        margin-bottom: 0.5rem;
        display: inline-block; }
      .bewerbungsportal-page .job-list li span {
        display: block;
        margin-top: 0.3rem;
        font-size: 0.95rem;
        color: #666; }
        .bewerbungsportal-page .job-list li span strong {
          color: #000; }
      .bewerbungsportal-page .job-list li a {
        color: #0088e2;
        text-decoration: none;
        font-weight: 500; }
        .bewerbungsportal-page .job-list li a:hover {
          text-decoration: underline;
          color: #000; }
    .bewerbungsportal-page .job-list > span {
      display: block;
      text-align: center;
      margin-top: 2rem;
      font-size: 1rem; }
      .bewerbungsportal-page .job-list > span a {
        font-weight: bold;
        color: #0088e2;
        text-decoration: none; }
        .bewerbungsportal-page .job-list > span a:hover {
          text-decoration: underline;
          color: #000; }
  .bewerbungsportal-page p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-top: 2rem; }

@media (max-width: 600px) {
  .bewerbungsportal-page {
    padding: 2rem 1rem; }
    .bewerbungsportal-page h2 {
      font-size: 1.7rem; }
    .bewerbungsportal-page .job-list li {
      padding: 1rem; }
      .bewerbungsportal-page .job-list li .jobtitle {
        font-size: 1.1rem; }
      .bewerbungsportal-page .job-list li span {
        font-size: 0.9rem; }
    .bewerbungsportal-page .job-list > span {
      font-size: 0.95rem; } }
.nosub a {
  color: #0088e2; }
  .nosub a:hover {
    text-decoration: underline;
    color: #000; }

.cloud-dashboard {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #333; }
  .cloud-dashboard .dashboard-header {
    text-align: center;
    margin-bottom: 2rem; }
    .cloud-dashboard .dashboard-header h1 {
      font-size: 2rem;
      color: #0088e2; }
    .cloud-dashboard .dashboard-header p {
      color: #666; }
  .cloud-dashboard .dashboard-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .cloud-dashboard .dashboard-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
    .cloud-dashboard .dashboard-card h2 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #111; }
    .cloud-dashboard .dashboard-card .progress-bar {
      width: 100%;
      height: 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
      margin: 0.5rem 0; }
    .cloud-dashboard .dashboard-card .progress {
      height: 100%;
      width: 0%;
      background-color: #4caf50;
      border-radius: 10px 0 0 10px;
      transition: width 0.8s ease; }
    .cloud-dashboard .dashboard-card .btn-upload, .cloud-dashboard .dashboard-card .btn-trash {
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: #0088e2;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease; }
      .cloud-dashboard .dashboard-card .btn-upload:hover, .cloud-dashboard .dashboard-card .btn-trash:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        background-color: #000; }
    .cloud-dashboard .dashboard-card .file-list, .cloud-dashboard .dashboard-card .log-list {
      list-style: none;
      padding: 0;
      margin-top: 1rem; }
      .cloud-dashboard .dashboard-card .file-list li, .cloud-dashboard .dashboard-card .log-list li {
        margin-bottom: 0.5rem; }
        .cloud-dashboard .dashboard-card .file-list li i, .cloud-dashboard .dashboard-card .log-list li i {
          margin-right: 0.5rem; }
    .cloud-dashboard .dashboard-card i.fas.fa-file-pdf {
      color: #e74c3c; }
    .cloud-dashboard .dashboard-card i.fas.fa-file-image {
      color: #27ae60; }
    .cloud-dashboard .dashboard-card i.fas.fa-file-word {
      color: #2980b9; }
    .cloud-dashboard .dashboard-card i.fas.fa-file-excel {
      color: #27ae60; }
    .cloud-dashboard .dashboard-card i.fas.fa-file {
      color: white;
      text-shadow: -1px -1px 0 #e1e5e9, 1px -1px 0 #e1e5e9, -1px 1px 0 #e1e5e9, 1px 1px 0 #e1e5e9; }

.abo-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0; }
  .abo-details li {
    margin-bottom: 0.3rem; }
    .abo-details li strong {
      color: #000; }

.text-success {
  color: green; }

.text-danger {
  color: red; }

.trash-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5; }
  .trash-modal.hidden {
    display: none; }
  .trash-modal .trash-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    min-width: 33%;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative; }
    @media (max-width: 576px) {
      .trash-modal .trash-modal-content {
        min-width: 80%; } }
    .trash-modal .trash-modal-content .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 1.5rem;
      cursor: pointer;
      width: 2rem;
      text-align: center;
      border-radius: 7px;
      transition: all 0.3s ease; }
      .trash-modal .trash-modal-content .close-btn:hover {
        background-color: rgba(0, 0, 0, 0.1); }
    .trash-modal .trash-modal-content .trash-list li {
      display: flex;
      align-items: center;
      padding: 0.5rem 0;
      border-bottom: 1px solid #e1e5e9;
      gap: 1rem;
      flex-wrap: wrap; }
    .trash-modal .trash-modal-content .trash-list li i {
      flex: 0 0 28px;
      text-align: center;
      font-size: 1.2rem; }
    .trash-modal .trash-modal-content .trash-list li span {
      flex: 1 1 auto;
      min-width: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .trash-modal .trash-modal-content .trash-list li > button {
      flex: 0 0 auto;
      font-size: 0.9rem;
      margin-left: 0.5rem;
      white-space: nowrap; }
    @media (max-width: 480px) {
      .trash-modal .trash-modal-content {
        padding: 1rem;
        max-height: 90vh; }
        .trash-modal .trash-modal-content .trash-list li {
          flex-direction: column;
          align-items: flex-start; }
        .trash-modal .trash-modal-content .trash-list li i {
          margin-bottom: 0.3rem; }
        .trash-modal .trash-modal-content .trash-list li span {
          white-space: normal;
          margin-bottom: 0.3rem; }
        .trash-modal .trash-modal-content .trash-list li > button {
          margin-left: 0;
          margin-right: 0.5rem; } }
  .trash-modal i.fas.fa-file-pdf {
    color: #e74c3c; }
  .trash-modal i.fas.fa-file-image {
    color: #27ae60; }
  .trash-modal i.fas.fa-file-word {
    color: #2980b9; }
  .trash-modal i.fas.fa-file-excel {
    color: #27ae60; }
  .trash-modal i.fas.fa-folder {
    color: #f2d324; }
  .trash-modal i.fas.fa-file {
    color: white;
    text-shadow: -1px -1px 0 #e1e5e9, 1px -1px 0 #e1e5e9, -1px 1px 0 #e1e5e9, 1px 1px 0 #e1e5e9; }

.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 15px;
  margin-top: 15px; }

.finder-item {
  text-align: center;
  color: #333;
  word-break: break-word;
  overflow-wrap: break-word; }
  .finder-item i {
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease; }
  .finder-item span {
    display: block;
    margin-top: 5px;
    font-size: 0.85em; }

.finder-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem; }
  .finder-toolbar input[type="text"] {
    flex: 1 1 100%;
    padding: 5px;
    border: 1px solid #e1e5e9; }
  .finder-toolbar button {
    flex: 1 1 calc(50% - 5px);
    background-color: #0088e2;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease; }
    .finder-toolbar button:hover {
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      background-color: #000; }
    .finder-toolbar button i {
      margin-right: 5px; }

#breadcrumb {
  margin-top: 10px;
  margin-bottom: 2rem;
  font-size: 0.9em;
  color: #666; }
  #breadcrumb .breadcrumb-part {
    cursor: pointer;
    color: #0088e2; }
    #breadcrumb .breadcrumb-part:hover {
      text-decoration: underline; }

.finder-item input {
  width: 100%;
  padding: 4px 6px;
  text-align: left;
  font-size: 0.85em;
  border-radius: 4px;
  box-sizing: border-box; }

.finder-item.folder i {
  color: #f2d324; }
  .finder-item.folder i:hover {
    color: #000; }

.finder-item.file i.fas.fa-file-pdf {
  color: #e74c3c; }
  .finder-item.file i.fas.fa-file-pdf:hover {
    color: #000; }
.finder-item.file i.fas.fa-file-image {
  color: #27ae60; }
  .finder-item.file i.fas.fa-file-image:hover {
    color: #000; }
.finder-item.file i.fas.fa-file-word {
  color: #2980b9; }
  .finder-item.file i.fas.fa-file-word:hover {
    color: #000; }
.finder-item.file i.fas.fa-file-excel {
  color: #27ae60; }
  .finder-item.file i.fas.fa-file-excel:hover {
    color: #000; }
.finder-item.file i.fas.fa-file {
  text-shadow: -1px -1px 0 #e1e5e9, 1px -1px 0 #e1e5e9, -1px 1px 0 #e1e5e9, 1px 1px 0 #e1e5e9; }
  .finder-item.file i.fas.fa-file:hover {
    color: #000; }

.context-menu {
  position: fixed;
  z-index: 5;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  min-width: 180px; }

.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.context-menu ul li {
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease; }

.context-menu ul li:hover {
  background: #f2f2f2; }

.context-menu.hidden {
  display: none; }

.btn-restore,
.btn-delete-permanent {
  transition: all;
  padding: 0.5rem; }
  .btn-restore:hover,
  .btn-delete-permanent:hover {
    background-color: rgba(0, 0, 0, 0.1); }

.account-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem; }
  .account-container h2 {
    text-align: center; }

.account-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; }

.cancel-sub {
  color: red; }
  .cancel-sub:hover {
    text-decoration: underline; }

.cancel-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.cancel-modal-overlay.active {
  opacity: 1;
  visibility: visible; }

.subNow {
  color: #0088e2; }
  .subNow:hover {
    text-decoration: underline; }

.cancel-modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.cancel-modal-overlay.active .cancel-modal {
  transform: scale(1) translateY(0); }

.cancel-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0 24px; }

.cancel-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937; }

.cancel-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center; }

.cancel-modal-close:hover {
  background: #f3f4f6;
  color: #374151; }

.cancel-modal-body {
  padding: 24px; }

.cancel-modal-icon {
  text-align: center;
  margin-bottom: 16px; }

.cancel-modal-icon i {
  font-size: 3rem;
  color: red; }

.cancel-modal-text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  margin: 0 0 20px 0; }

.cancel-modal-info {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px; }

.cancel-modal-info p {
  margin: 0 0 12px 0;
  font-weight: 600;
  color: #374151; }

.cancel-modal-info ul {
  margin: 0;
  padding-left: 20px;
  color: #6b7280; }

.cancel-modal-info li {
  margin-bottom: 8px;
  line-height: 1.5; }

.cancel-modal-info li:last-child {
  margin-bottom: 0; }

.cancel-modal-footer {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px 24px;
  justify-content: flex-end; }

.cancel-modal-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  min-width: 120px; }

.cancel-modal-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7; }

.cancel-modal-btn-secondary {
  background: #f3f4f6;
  color: #374151; }

.cancel-modal-btn-secondary:hover:not(:disabled) {
  background: #e5e7eb; }

.cancel-modal-btn-danger {
  background: #dc2626;
  color: white; }

.cancel-modal-btn-danger:hover:not(:disabled) {
  background: #b91c1c; }

.cancel-modal-success {
  text-align: center;
  padding: 20px 0; }

.success-content i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 16px; }

.success-content p {
  font-size: 1.125rem;
  color: #374151;
  margin: 0; }

.cancel-modal-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px; }

.error-content {
  display: flex;
  align-items: center;
  gap: 12px; }

.error-content i {
  color: #dc2626;
  font-size: 1.25rem; }

.error-content p {
  margin: 0;
  color: #7f1d1d;
  font-weight: 500; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.fa-spin {
  animation: spin 1s linear infinite; }

@media (max-width: 640px) {
  .cancel-modal {
    margin: 16px;
    width: calc(100% - 32px); }

  .cancel-modal-header,
  .cancel-modal-body,
  .cancel-modal-footer {
    padding-left: 16px;
    padding-right: 16px; }

  .cancel-modal-footer {
    flex-direction: column; }

  .cancel-modal-btn {
    width: 100%; } }
.cancel-modal span {
  color: white; }

@media (min-width: 641px) {
  .cancel-modal-btn-secondary {
    flex: 1; }

  .cancel-modal-btn-danger {
    flex-shrink: 0; } }
.profile-section {
  text-align: center; }

.upload-label {
  display: inline-block;
  background: #0088e2;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease; }
  .upload-label:hover {
    background-color: #000; }

.upload-label input {
  display: none; }

.info-section {
  flex: 2 1 400px; }

.info-section p {
  margin: 0.5rem 0; }

.info-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555; }

.info-note a:hover {
  text-decoration: underline; }

@media (max-width: 768px) {
  .account-card {
    justify-content: center;
    align-items: center; }

  .info-section {
    text-align: center; } }
.download-agb a {
  text-decoration: none; }
  .download-agb a:hover {
    text-decoration: underline; }

.empty-message {
  position: absolute;
  top: 82%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ccc;
  white-space: nowrap;
  text-align: center; }

.user-options {
  position: absolute;
  top: 100px;
  background-color: #fff;
  width: 600px;
  height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #e1e5e9;
  display: grid;
  justify-content: center;
  align-items: center;
  display: none; }
  .user-options .profile-picture {
    margin-top: 2rem;
    border: 1px solid #0088e2;
    width: 120px;
    height: 120px; }
    .user-options .profile-picture img {
      max-width: 120px; }
  .user-options a {
    transition: all 0.3s ease; }
    .user-options a:hover {
      color: #0088e2; }

.user {
  display: flex;
  align-items: center; }

.name {
  margin-top: 2rem;
  font-size: 2rem; }

.usersel-options {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding-left: 0.3rem; }

#openMessenger:hover {
  cursor: pointer; }

.user-options li {
  transition: all 0.3s ease; }
  .user-options li:hover {
    color: #0088e2; }

#closeUseroptions {
  position: absolute;
  text-align: center;
  cursor: pointer;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  width: 2rem;
  border-radius: 7px;
  transition: all 0.3s ease; }
  #closeUseroptions:hover {
    background-color: rgba(0, 0, 0, 0.1); }

.two-factor {
  color: #0088e2; }
  .two-factor:hover {
    text-decoration: underline; }

#change-password-link {
  color: #0088e2; }
  #change-password-link:hover {
    text-decoration: underline; }

#change-password-form {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

#change-password-form input[type="password"] {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s; }

#change-password-form input[type="password"]:focus {
  outline: none;
  border-color: #0088e2;
  box-shadow: 0 0 4px rgba(0, 119, 204, 0.3); }

#change-password-form button {
  background: #0088e2;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s; }

#change-password-form button:hover {
  background: black; }

ul.messages {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0; }

ul.messages li {
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px; }

ul.messages li.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb; }

ul.messages li.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb; }

#messengerContainer.messenger {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 95%;
  max-width: 900px;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  z-index: 3; }
  #messengerContainer.messenger.hidden {
    display: none; }
  #messengerContainer.messenger .messenger-header {
    background-color: #0088e2;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #messengerContainer.messenger .messenger-header .messenger-close {
      cursor: pointer;
      font-size: 2rem;
      position: absolute;
      top: -5px;
      right: 10px; }
  #messengerContainer.messenger .messenger-body {
    display: flex;
    flex: 1;
    overflow: hidden; }
    #messengerContainer.messenger .messenger-body .messenger-users {
      width: 35%;
      border-right: 1px solid #e1e5e9;
      background: #f9f9f9;
      display: flex;
      flex-direction: column; }
      #messengerContainer.messenger .messenger-body .messenger-users h4 {
        margin: 10px;
        margin-bottom: 8px; }
      #messengerContainer.messenger .messenger-body .messenger-users .contact-list-wrapper {
        flex: 1;
        overflow-y: auto;
        padding: 0 10px; }
        #messengerContainer.messenger .messenger-body .messenger-users .contact-list-wrapper .no-results {
          color: #666;
          font-size: 0.85em;
          padding: 10px 0; }
        #messengerContainer.messenger .messenger-body .messenger-users .contact-list-wrapper ul {
          list-style: none;
          padding: 0;
          margin: 0; }
          #messengerContainer.messenger .messenger-body .messenger-users .contact-list-wrapper ul li {
            padding: 8px;
            margin-bottom: 5px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center; }
            #messengerContainer.messenger .messenger-body .messenger-users .contact-list-wrapper ul li:hover {
              background-color: #eee; }
      #messengerContainer.messenger .messenger-body .messenger-users .contact-search-container {
        border-top: 1px solid #e1e5e9;
        padding: 10px; }
        #messengerContainer.messenger .messenger-body .messenger-users .contact-search-container .contact-search {
          width: 100%;
          height: 38px;
          padding: 8px 10px;
          border: 1px solid #e1e5e9;
          border-radius: 4px;
          font-size: 0.9em; }
    #messengerContainer.messenger .messenger-body .messenger-chat {
      flex: 1;
      display: flex;
      flex-direction: column; }
      #messengerContainer.messenger .messenger-body .messenger-chat .chat-history {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 5px; }
        #messengerContainer.messenger .messenger-body .messenger-chat .chat-history .message {
          max-width: 80%;
          word-wrap: break-word;
          overflow-wrap: anywhere;
          hyphens: auto;
          padding: 8px 12px;
          border-radius: 8px;
          font-size: 0.9em; }
          #messengerContainer.messenger .messenger-body .messenger-chat .chat-history .message.received {
            align-self: flex-start;
            background-color: #eee; }
          #messengerContainer.messenger .messenger-body .messenger-chat .chat-history .message.sent {
            align-self: flex-end;
            background-color: #4caf50;
            color: white; }
            #messengerContainer.messenger .messenger-body .messenger-chat .chat-history .message.sent a {
              color: white; }
            #messengerContainer.messenger .messenger-body .messenger-chat .chat-history .message.sent span {
              color: white; }
      #messengerContainer.messenger .messenger-body .messenger-chat .chat-input {
        display: flex;
        padding: 10px;
        border-top: 1px solid #e1e5e9; }
        #messengerContainer.messenger .messenger-body .messenger-chat .chat-input input[type="text"] {
          flex: 1;
          padding: 8px;
          border: 1px solid #e1e5e9;
          border-radius: 4px;
          margin-right: 10px;
          height: 38px; }
        #messengerContainer.messenger .messenger-body .messenger-chat .chat-input .file-upload-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          color: #111;
          font-size: 1.2em; }
        #messengerContainer.messenger .messenger-body .messenger-chat .chat-input button {
          padding: 8px 12px;
          background-color: #0088e2;
          color: white;
          border: none;
          border-radius: 4px;
          cursor: pointer; }
          #messengerContainer.messenger .messenger-body .messenger-chat .chat-input button:hover {
            background-color: #0069af; }
  @media (max-width: 600px) {
    #messengerContainer.messenger {
      bottom: 0;
      right: 0;
      height: 85vh;
      width: 100vw;
      max-width: 100vw;
      max-height: 100vh;
      border: none; }
      #messengerContainer.messenger .messenger-header {
        border: none; }
      #messengerContainer.messenger .messenger-body {
        flex-direction: column;
        height: 100%;
        overflow: hidden; }
        #messengerContainer.messenger .messenger-body .messenger-users {
          width: 100%;
          border-right: none;
          border-bottom: 1px solid #e1e5e9;
          max-height: 250px;
          overflow-y: auto; }
        #messengerContainer.messenger .messenger-body .messenger-chat {
          flex: 1;
          min-height: 0;
          display: flex;
          flex-direction: column; }
          #messengerContainer.messenger .messenger-body .messenger-chat .chat-history {
            flex: 1;
            min-height: 0;
            overflow-y: auto; } }

.messenger-title,
.messenger-close {
  color: #fff; }

.messenger-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px; }
  .messenger-contact .contact-name {
    flex: 1;
    margin-left: 8px; }
  .messenger-contact .status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px; }
    .messenger-contact .status.online {
      background-color: #4caf50; }
    .messenger-contact .status.offline {
      background-color: #f44336; }
  .messenger-contact .unread-badge {
    background-color: red;
    color: white;
    font-size: 0.7em;
    padding: 6px;
    margin-right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center; }
  .messenger-contact .contact-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 5px;
    border: 1px solid #e1e5e9; }

.message {
  position: relative;
  padding-bottom: 20px; }
  .message.sent.last-in-stack::after {
    content: attr(data-read-time);
    position: absolute;
    bottom: -25px;
    right: 1px;
    font-size: 0.75em;
    padding-bottom: 5px;
    color: #999;
    white-space: nowrap;
    align-items: center; }

.chat-placeholder {
  padding: 2rem;
  color: #999;
  text-align: center; }

.messenger-contact.active {
  background-color: #eee; }

.fibu-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem; }
  @media (max-width: 768px) {
    .fibu-wrapper {
      padding: 0.75rem; } }
  @media (max-width: 480px) {
    .fibu-wrapper {
      padding: 0.5rem; } }

.fibu-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem; }
  @media (max-width: 768px) {
    .fibu-title {
      font-size: 1.375rem; } }
  @media (max-width: 480px) {
    .fibu-title {
      font-size: 1.25rem;
      text-align: center; } }

.fibu-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 768px) {
    .fibu-summary {
      gap: 0.75rem; } }
  @media (max-width: 480px) {
    .fibu-summary {
      grid-template-columns: 1fr;
      gap: 0.5rem; } }
  .fibu-summary div {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f0fdf4;
    font-weight: 500; }
    @media (max-width: 768px) {
      .fibu-summary div {
        padding: 0.75rem;
        font-size: 0.9rem; } }
    @media (max-width: 480px) {
      .fibu-summary div {
        padding: 0.75rem;
        text-align: center; } }
  .fibu-summary .fibu-income {
    background-color: #dcfce7; }
  .fibu-summary .fibu-expense {
    background-color: #fee2e2; }
  .fibu-summary .fibu-balance {
    background-color: #dbeafe; }

.fibu-form {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .fibu-form {
      padding: 0.875rem; } }
  @media (max-width: 480px) {
    .fibu-form {
      padding: 0.75rem;
      margin-bottom: 1.5rem; } }
  .fibu-form input, .fibu-form select, .fibu-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    margin-bottom: 0.75rem;
    font-size: 0.9rem; }
    @media (max-width: 480px) {
      .fibu-form input, .fibu-form select, .fibu-form textarea {
        padding: 0.625rem;
        font-size: 1rem;
        margin-bottom: 0.5rem; } }
  .fibu-form label {
    font-weight: 500; }
    @media (max-width: 480px) {
      .fibu-form label {
        font-size: 0.9rem; } }

.fibu-submit {
  background-color: #0088e2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease; }
  @media (max-width: 480px) {
    .fibu-submit {
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
      margin-top: 0.5rem; } }
  .fibu-submit:hover {
    background-color: #2563eb; }

.fibu-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e5e7eb; }
  @media (max-width: 480px) {
    .fibu-divider {
      margin: 1.5rem 0; } }

.fibu-table-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem; }
  @media (max-width: 768px) {
    .fibu-table-title {
      font-size: 1.125rem; } }
  @media (max-width: 480px) {
    .fibu-table-title {
      font-size: 1rem;
      text-align: center; } }

.fibu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem; }
  @media (max-width: 768px) {
    .fibu-table {
      font-size: 0.8rem; } }
  @media (max-width: 480px) {
    .fibu-table {
      font-size: 0.75rem;
      display: block;
      overflow-x: auto;
      white-space: nowrap; } }
  .fibu-table thead {
    background-color: #f0f0f0; }
    .fibu-table thead th {
      padding: 0.75rem 1rem;
      text-align: left;
      border-bottom: 2px solid #ccc; }
      @media (max-width: 768px) {
        .fibu-table thead th {
          padding: 0.5rem 0.75rem; } }
      @media (max-width: 480px) {
        .fibu-table thead th {
          padding: 0.5rem;
          min-width: 100px; } }
  .fibu-table tbody tr {
    border-bottom: 1px solid #ddd; }
    .fibu-table tbody tr:hover {
      background-color: #fafafa; }
  .fibu-table tbody td {
    padding: 0.5rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid #ddd; }
    @media (max-width: 768px) {
      .fibu-table tbody td {
        padding: 0.4rem 0.75rem; } }
    @media (max-width: 480px) {
      .fibu-table tbody td {
        padding: 0.4rem 0.5rem;
        min-width: 100px; } }
  .fibu-table a {
    color: #1d4ed8;
    text-decoration: underline; }
    .fibu-table a:hover {
      color: #2563eb; }

.fibufield {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.95rem;
  color: #111827;
  transition: border-color 0.2s, box-shadow 0.2s; }
  @media (max-width: 480px) {
    .fibufield {
      padding: 0.625rem;
      font-size: 1rem; } }
  .fibufield:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2); }
  .fibufield::placeholder {
    color: #9ca3af; }

@media (max-width: 480px) {
  button, .fibu-submit, input[type="submit"] {
    min-height: 44px;
    touch-action: manipulation; } }
@media (max-width: 480px) {
  .fibu-wrapper {
    padding: 0; }

  .fibu-wrapper > * {
    margin-left: 0.5rem;
    margin-right: 0.5rem; }

  .fibu-table {
    margin-left: 0;
    margin-right: 0; }
    .fibu-table thead {
      display: none; }
    .fibu-table tbody tr {
      display: block;
      margin-bottom: 1rem;
      margin-left: 1rem;
      border: 1px solid #ddd;
      border-radius: 0.375rem;
      padding: 0.75rem;
      background-color: #fafafa;
      width: calc(100vw - 2rem);
      box-sizing: border-box; }
    .fibu-table tbody td {
      display: block;
      text-align: left;
      border: none;
      padding: 0.4rem 0; }
      .fibu-table tbody td:nth-child(1):before {
        content: "Datum: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(2):before {
        content: "Typ: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(3):before {
        content: "Kategorie: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(4):before {
        content: "Betrag: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(5):before {
        content: "Beschreibung: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(6):before {
        content: "Datei: ";
        font-weight: bold;
        color: #374151; }
      .fibu-table tbody td:nth-child(7) {
        display: none; } }
.time-tracking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  gap: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif; }
  .time-tracking-container textarea {
    background: white;
    padding: 1rem; }

.time-tracking-container .calendar-sidebar {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content; }

.time-tracking-container .calendar-month h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee; }

.time-tracking-container .calendar-month ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px; }

.time-tracking-container .calendar-month li {
  aspect-ratio: 1;
  border-radius: 4px;
  position: relative; }
  .time-tracking-container .calendar-month li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.2s; }
  .time-tracking-container .calendar-month li:hover a {
    background: #f0f0f0;
    color: #333; }
  .time-tracking-container .calendar-month li.has-entry {
    background-color: #28a745;
    border: 2px solid #28a745 !important; }
    .time-tracking-container .calendar-month li.has-entry a {
      color: white;
      font-weight: 600; }
  .time-tracking-container .calendar-month li.current-week-day {
    background: #007bff; }
    .time-tracking-container .calendar-month li.current-week-day a {
      color: white;
      font-weight: 600; }
    .time-tracking-container .calendar-month li.current-week-day.has-entry {
      background-color: #28a745;
      border: 1px solid #007bff; }
      .time-tracking-container .calendar-month li.current-week-day.has-entry a {
        color: white; }
  .time-tracking-container .calendar-month li.today {
    background-color: red !important;
    border: 2px solid red !important;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3); }
    .time-tracking-container .calendar-month li.today a {
      font-weight: 700; }

.time-tracking-container .weekly-view {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }

.time-tracking-container .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 6px; }

.time-tracking-container .btn-nav {
  padding: 6px 12px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: background 0.2s; }
  .time-tracking-container .btn-nav:hover {
    background: #0056b3; }

.time-tracking-container .current-kw {
  font-size: 1rem;
  font-weight: 600;
  color: #333; }

.time-tracking-container .week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px; }

.time-tracking-container .day-cell {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 12px;
  transition: all 0.2s; }
  .time-tracking-container .day-cell:hover {
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1); }
  .time-tracking-container .day-cell.current-week {
    background: white;
    border-color: #007bff; }
  .time-tracking-container .day-cell.today {
    background: white;
    border-color: #007bff;
    border-width: 2px;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); }

.time-tracking-container .date {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase; }

.time-tracking-container .entry {
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500; }
  .time-tracking-container .entry.empty {
    background: #e9ecef;
    color: #6c757d; }
  .time-tracking-container .entry.arbeitszeit {
    background: #d4edda;
    color: #155724; }
  .time-tracking-container .entry.urlaub {
    background: #fff3cd;
    color: #856404; }
  .time-tracking-container .entry.krank {
    background: #f8d7da;
    color: #721c24; }
  .time-tracking-container .entry.ueberstunden {
    background: #e2e3ff;
    color: #4c4c9d; }
  .time-tracking-container .entry.total {
    background-color: rgba(212, 237, 218, 0.7);
    font-weight: 600;
    color: #155724;
    margin-top: 4px; }

.morphing-entries {
  position: relative;
  min-height: 24px;
  margin-bottom: 1rem; }
  .morphing-entries .morphing-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #e9ecef;
    transition: opacity 0.5s ease-in-out; }
    .morphing-entries .morphing-item.active {
      opacity: 1; }

.time-tracking-container .entry-form {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 20px; }
  .time-tracking-container .entry-form h3 {
    color: #333;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600; }
  .time-tracking-container .entry-form form {
    display: grid;
    gap: 12px; }
  .time-tracking-container .entry-form p {
    display: grid;
    gap: 4px; }
  .time-tracking-container .entry-form label {
    font-weight: 500;
    color: #555;
    font-size: 0.85rem; }
  .time-tracking-container .entry-form input,
  .time-tracking-container .entry-form select,
  .time-tracking-container .entry-form textarea {
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.85rem;
    background: white; }
    .time-tracking-container .entry-form input:focus,
    .time-tracking-container .entry-form select:focus,
    .time-tracking-container .entry-form textarea:focus {
      outline: none;
      border-color: #007bff;
      box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); }
  .time-tracking-container .entry-form textarea {
    resize: vertical;
    min-height: 60px; }

.time-tracking-container .btn-save {
  padding: 8px 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.85rem;
  justify-self: start;
  transition: background 0.2s; }
  .time-tracking-container .btn-save:hover {
    background: #218838; }

.time-tracking-container .unauthorized {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center; }
  .time-tracking-container .unauthorized h1 {
    color: #dc3545;
    font-size: 1.25rem;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }

@media (max-width: 768px) {
  .time-tracking-container {
    flex-direction: column;
    padding: 12px;
    gap: 16px; }
    .time-tracking-container .calendar-sidebar {
      flex: none;
      order: 2; }
    .time-tracking-container .weekly-view {
      order: 1; }
    .time-tracking-container .calendar-nav {
      flex-direction: column;
      gap: 8px;
      text-align: center; }
    .time-tracking-container .current-kw {
      order: -1;
      font-size: 0.9rem; }
    .time-tracking-container .btn-nav {
      width: 100%; }
    .time-tracking-container .week-grid {
      grid-template-columns: 1fr;
      gap: 8px; }
    .time-tracking-container .btn-save {
      width: 100%;
      justify-self: stretch; } }
@media (max-width: 480px) {
  .time-tracking-container {
    padding: 8px; }
    .time-tracking-container .calendar-sidebar,
    .time-tracking-container .weekly-view {
      padding: 16px; }
    .time-tracking-container .entry-form {
      padding: 16px; } }
#cookie-consent-banner {
  width: 100vw;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #000;
  border-top: solid 1px #666;
  display: grid;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: none;
  pointer-events: none; }

.show-cookie {
  display: grid;
  pointer-events: auto; }

#cookie-consent-banner p {
  color: #fff;
  font-weight: 600;
  max-width: 80vw; }

#cookie-consent-banner p:last-child {
  margin-bottom: 1.5rem; }

#cookie-consent-banner p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline; }

.consent-title {
  font-size: 2rem;
  margin-bottom: 1rem; }

.cookie-selection {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem; }

@media (min-width: 1400px) {
  #cookie-consent-banner {
    width: auto;
    border-right: solid 1px #666; }

  #cookie-consent-banner p {
    max-width: 30vw; } }
@media screen and (max-width: 576px) {
  .consent-title {
    font-size: 1.25rem; }

  .cookie-selection {
    display: grid; } }
.upload-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.upload-overlay.show {
  display: flex;
  opacity: 1; }

/* Modern Pop-up Container */
.upload-popup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.upload-overlay.show .upload-popup {
  transform: scale(1) translateY(0); }

/* Status Icon Container */
.status-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, blue, purple); }

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* Success Icon */
.success-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #56ab2f, #a8e6cf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.success-icon::after {
  content: '✓';
  color: white;
  font-size: 24px;
  font-weight: bold; }

/* Error Icon */
.error-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.error-icon::after {
  content: '✗';
  color: white;
  font-size: 24px;
  font-weight: bold; }

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
/* Status Text */
.status-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
  line-height: 1.3; }

.status-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5; }

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px; }
  .progress-container .progress-bar {
    height: 100%;
    background: #4caf50;
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative; }
  .progress-container .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite; }

@keyframes shimmer {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(100%); } }
/* Close Button */
.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  transition: all 0.2s ease; }

.close-button:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1); }

/* Demo Button */
.demo-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }

.demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6); }

.demo-button:active {
  transform: translateY(0); }

/* Responsive Design */
@media (max-width: 480px) {
  .upload-popup {
    padding: 32px 24px;
    border-radius: 20px;
    width: 95%; }

  .status-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px; }

  .spinner {
    width: 35px;
    height: 35px; }

  .success-icon,
  .error-icon {
    width: 45px;
    height: 45px; }

  .status-title {
    font-size: 20px; }

  .status-description {
    font-size: 14px; }

  .demo-button {
    padding: 14px 28px;
    font-size: 15px; } }
@media (max-width: 360px) {
  .upload-popup {
    padding: 28px 20px; }

  .status-title {
    font-size: 18px; } }

/*# sourceMappingURL=base.css.map */
