/*styles.responsive.css*/
/* ---------- Base / Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Utilities ---------- */
.highlight {
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.highlights {
  font-weight: bold;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Common CTA button (used in multiple pages) */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Reveal-on-scroll helpers */
.hidden {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hidden.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   Navigation
   ========================================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  padding: 14px max(24px, calc((100vw - 1180px) / 2));

  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 232, 247, 0.85);
  box-shadow: 0 14px 42px rgba(17, 32, 51, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul li {
  margin: 0;
}

nav ul li a,
nav ul li .nav-dropdown-toggle {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 16px;

  border-radius: 999px;

  color: #112033;
  background: transparent;

  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;

  transition:
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

nav ul li a::before,
nav ul li .nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;
  background: linear-gradient(135deg, rgba(74, 158, 232, 0.13), rgba(126, 200, 240, 0.08));

  opacity: 0;
  transform: scale(0.92);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

nav ul li a:hover,
nav ul li .nav-dropdown-toggle:hover {
  color: #2A6AAA;
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 158, 232, 0.12);
}

nav ul li a:hover::before,
nav ul li .nav-dropdown-toggle:hover::before {
  opacity: 1;
  transform: scale(1);
}

nav ul li a.active,
nav ul li .nav-dropdown-toggle.active {
  color: #ffffff;
  border-bottom: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2A6AAA, #4A9EE8);
  box-shadow: 0 14px 32px rgba(74, 158, 232, 0.24);
}

nav ul li a.active::before,
nav ul li .nav-dropdown-toggle.active::before {
  display: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo img {
  height: 46px;
  object-fit: contain;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.nav-logo img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 18px rgba(74, 158, 232, 0.18));
}

/* Optional: Login/Register etwas dezenter als Account-Actions */
nav .nav-left li a {
  color: #52677e;
  background: rgba(246, 251, 255, 0.72);
  border: 1px solid rgba(217, 232, 247, 0.9);
}

nav .nav-left li a:hover {
  color: #2A6AAA;
  border-color: rgba(74, 158, 232, 0.28);
}

/* Responsive Anpassung: Auf Handys untereinander */
@media (max-width: 768px) {
  nav {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 14px 18px;
    gap: 12px;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a,
  nav ul li .nav-dropdown-toggle {
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .nav-logo img {
    height: 42px;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 8px);
    min-width: 220px;
    width: max-content;
    max-width: calc(100vw - 32px);
    transform: translateX(-50%) translateY(8px);
    z-index: 1002;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-menu a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* =========================================================
   Home: Hero
   ========================================================= */
.hero {
  text-align: center;
  color: #fff;
  padding: 5rem 2rem;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/BodyBackground2w_short&lower.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 530px;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  animation: slideInLeft 1.5s ease-in-out forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  animation: slideInRight 1.5s ease-in-out 0.5s forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================================================
   Home Sections: Info & Focus - Premium Redesign
   ========================================================= */

.home-info-section,
.home-focus-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

.home-info-section {
  background: white;
}

.home-focus-section {
  background: #f9f9f9;
}

.home-info-section::before,
.home-focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.08), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(0, 195, 255, 0.08), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 46%, transparent 74%);
  pointer-events: none;
}

.home-showcase-wrap,
.home-focus-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* =========================================================
   Info Showcase
   ========================================================= */

.home-showcase-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 2rem;
  align-items: stretch;
}

.home-showcase-content,
.home-showcase-panel,
.home-focus-intro,
.home-focus-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-showcase-content {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}


.home-section-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: #fdf6f6;
  border: 1px solid #cecece;
  color: #111827;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-showcase-content h2,
.home-focus-intro h2 {
  margin: 0 0 1.1rem 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-showcase-content p,
.home-focus-intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-showcase-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.home-primary-action,
.home-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-primary-action {
  color: #ffffff;
  background: linear-gradient(135deg, #007bff, #00aaff);
  box-shadow: 0 14px 32px rgba(0, 123, 255, 0.28);
}

.home-secondary-action {
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.home-primary-action:hover,
.home-secondary-action:hover {
  transform: translateY(-3px);
}

.home-primary-action:hover {
  box-shadow: 0 20px 44px rgba(0, 123, 255, 0.42);
}

.home-secondary-action:hover {
  border-color: rgba(0, 123, 255, 0.22);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.home-showcase-panel {
  padding: 1.2rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.home-panel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem 1.1rem;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-panel-topline i {
  color: #007bff;
}

.home-info-list {
  display: grid;
  gap: 0.9rem;
}

.home-info-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.home-info-item:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.18);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
}

.home-card-icon,
.home-focus-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #007bff, #00c3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 32px rgba(0, 123, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-card-icon i,
.home-focus-icon i {
  color: #ffffff;
  font-size: 1.35rem;
}

.home-info-item h3,
.home-focus-card h3 {
  margin: 0 0 0.35rem 0;
  color: #111827;
  font-size: 1.16rem;
}

.home-info-item p,
.home-focus-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.home-item-arrow {
  color: #007bff;
  transition: transform 0.24s ease;
}

.home-info-item:hover .home-item-arrow {
  transform: translateX(4px);
}

/* =========================================================
   Focus Area
   ========================================================= */

.home-focus-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.home-focus-intro {
  position: sticky;
  top: 110px;
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.92));
}

.home-focus-grid {
  display: grid;
  gap: 1rem;
}

.home-focus-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 195, 255, 0.11), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.home-focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.16);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.home-focus-card:hover::before {
  opacity: 1;
}

.home-focus-card-featured {
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.88));
}

.home-focus-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.home-focus-tag {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-focus-card h3,
.home-focus-card p {
  position: relative;
  z-index: 1;
}

.home-focus-card h3 {
  font-size: 1.32rem;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {

  .home-showcase-wrap,
  .home-focus-wrap {
    grid-template-columns: 1fr;
  }

  .home-focus-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {

  .home-info-section,
  .home-focus-section {
    padding: 4rem 1.15rem;
  }

  .home-showcase-content,
  .home-showcase-panel,
  .home-focus-intro,
  .home-focus-card {
    border-radius: 24px;
  }

  .home-info-item {
    grid-template-columns: 1fr;
  }

  .home-item-arrow {
    display: none;
  }

  .home-focus-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   Footer (shared)
   ========================================================= */
.footer {
  position: relative;
  overflow: hidden;

  padding: 54px 24px 42px;

  background:
    radial-gradient(circle at 12% 20%, rgba(126, 200, 240, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(74, 158, 232, 0.18), transparent 30%),
    linear-gradient(120deg, #071523 0%, #0d2238 48%, #123a53 100%);

  color: #ffffff;
  text-align: center;

  border-top: 1px solid rgba(126, 200, 240, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 36%, transparent 70%, rgba(255, 255, 255, 0.04));

  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;

  max-width: 980px;
  margin: 0 auto;
}

.footer p {
  margin: 0.45rem 0;

  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer p:first-child {
  color: #ffffff;
  font-weight: 800;
}

.footer-links {
  list-style: none;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  padding: 0;
  margin: 22px 0 0;
}

.footer-links li {
  display: inline-flex;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);

  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(126, 200, 240, 0.14);
  border-color: rgba(126, 200, 240, 0.34);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-socials {
  position: relative;
  z-index: 1;

  margin-top: 24px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;

  display: inline-grid;
  place-items: center;

  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;

  font-size: 19px;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #2A6AAA, #4A9EE8);
  border-color: rgba(126, 200, 240, 0.46);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(74, 158, 232, 0.24);
}


.team-socials a {
  color: #00c3ff
}

/* =========================================================
   About page
   ========================================================= */
.about-header {
  text-align: center;
  padding: 5rem 2rem;
  color: #333;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/Innovation_short&lower.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-header p {
  font-size: 1.2rem;
  color: #fff;
}

.about-content {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.about-text:nth-child(even) {
  flex-direction: row-reverse;
}

.about-text h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* =========================================================
   Team section (About)
   ========================================================= */
.team-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  flex: 0 0 200px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  color: #555;
}

/* =========================================================
   Login page
   ========================================================= */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/BodyBackground2w.webp") no-repeat center;
  background-size: cover;
}

.login-form {
  width: 400px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.login-form h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.login-form .input-box {
  position: relative;
  margin-bottom: 20px;
  max-width: 350px;
}

.login-form .input-box input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.login-form .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.login-form .input-box i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

.login-form .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.login-form .btn {
  width: 100%;
  padding: 10px 0;
  background: #007bff;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form .btn:hover {
  background-color: #0056b3;
}

.login-form .register-link {
  text-align: center;
  margin-top: 10px;
}

.login-form .register-link a {
  color: #007bff;
  text-decoration: none;
}

.login-form .register-link a:hover {
  text-decoration: underline;
}

.remember-forgot a {
  color: blue;
}

.remember-forgot a:active {
  color: purple;
}

.login-form .input-box input:focus {
  outline: none;
  border: 1px solid #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.login-form .input-box input:focus-visible {
  border: 2px solid #007bff;
}

.password-box {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  transition: 0.2s;
}

.toggle-password:hover {
  color: #fff;
}

/* =========================================================
   Contact page
   ========================================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  min-height: 80vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/BodyBackground2w_short&lower.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-form {
  background-color: #00000054;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.144);
  width: 100%;
  max-width: 600px;

  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
  -webkit-animation: fadeIn 1s ease-out forwards;
  -webkit-animation-delay: 0.3s;
}

.contact-form h1 {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
  color: #fff;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

.success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
  max-width: 550px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #dbdbdba1;
  background-color: #00000085;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  color: #fff;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #007bff;
  outline: none;
}

.input-box i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #007bff;
  font-size: 20px;
}

.input-box textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#btn_contact_formular {
  border-radius: 25px;
}

.btn:hover {
  background-color: #0056b3;
}

.contact-info-section {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #000000;
}

.contact-info-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-container h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info-intro {
  color: #000000;
  margin-bottom: 32px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: #00bcd4;
  background: #1b1b1b;
}

.contact-info-card i {
  font-size: 1.8rem;
  color: #00bcd4;
}

.contact-info-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.contact-info-card p {
  margin: 0;
  color: #cfcfcf;
}

@media (max-width: 700px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    justify-content: flex-start;
  }
}

/* =========================
   CATEGORY SELECT
========================= */

.select-box {
  position: relative;
}

.select-box select {
  width: 100%;
  padding: 16px 50px 16px 18px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  color: #ffffff;
  font-size: 15px;
  font-family: inherit;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Hover */
.select-box select:hover {
  border-color: rgba(0, 188, 212, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* Focus */
.select-box select:focus {
  border-color: #00bcd4;

  box-shadow:
    0 0 0 4px rgba(0, 188, 212, 0.12),
    0 0 18px rgba(0, 188, 212, 0.18);

  background: rgba(255, 255, 255, 0.07);
}

/* Dropdown Optionen */
.select-box select option {
  background: #111111;
  color: #ffffff;
}

/* Pfeil */
.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);

  color: #00bcd4;
  pointer-events: none;

  font-size: 13px;

  transition: transform 0.2s ease;
}

/* Animation beim Fokus */
.select-box:focus-within .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Label über dem Select */
.select-label {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;

  color: #00bcd4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.select-label i {
  font-size: 15px;
}

/* =========================================================
   Services page
   ========================================================= */
.services-content {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-header {
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/BodyBackground5_short&lower.webp");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.service-item {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  flex-direction: column;
}

.service-item div {
  max-width: 600px;
}

.service-item h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* =========================================================
   Blog page
   ========================================================= */

.blog-header {
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/Blog_Site.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

/* =========================================================
   Reset page
   ========================================================= */
.reset-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.reset-form {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.reset-form h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.reset-form .input-box {
  position: relative;
  margin-bottom: 20px;
}

.reset-form .input-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #cccccc;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
  background-color: #00000085;
}

.reset-form .input-box input::placeholder {
  color: #fff;
}

.reset-form .input-box input:focus {
  border-color: #66afe9;
  outline: none;
}

.reset-form .input-box i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #888;
  font-size: 20px;
}

.reset-form .btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reset-form .btn:hover {
  background-color: #0056b3;
}

.reset-form .login-link {
  text-align: center;
  margin-top: 15px;
}

.reset-form .login-link a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.reset-form .login-link a:hover {
  color: #0056b3;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.35rem;

  background: linear-gradient(135deg, #007bff, #00aaff);
  color: #ffffff;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  border-radius: 999px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

  box-shadow:
    0 10px 24px rgba(0, 123, 255, 0.22);
}

.card-link:hover {
  transform: translateY(-2px);

  background: linear-gradient(135deg, #0069d9, #0095e6);

  box-shadow:
    0 16px 34px rgba(0, 123, 255, 0.32);
}

.card-link:active {
  transform: translateY(0);
}

.card-link:visited {
  color: #ffffff;
}

/* =========================================================
   Projects page (slider)
   ========================================================= */
.intro-section {
  padding: 50px 20px 30px;
  text-align: center;
  background: #fff;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 10px auto;
  color: #555;
}

.projects-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0b0b0b;
}

.projects-list-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.project-item {
  max-width: 1100px;
  margin: 0 auto 40px auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.project-item-image {
  width: 40%;
  min-height: 280px;
  object-fit: cover;
}

.project-item-content {
  width: 60%;
  padding: 30px;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-item-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.project-item-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.project-link {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-link:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Helper for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*Coming Soon Blur Effect*/
.coming-soon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.coming-soon-content {
  text-align: center;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.coming-soon-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.coming-soon-content p {
  font-size: 1.2rem;
  color: #ddd;
}

.coming-soon-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 0.8rem 1.6rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.coming-soon-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.coming-soon-icon {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .project-item {
    flex-direction: column;
  }

  .project-item-image,
  .project-item-content {
    width: 100%;
  }

  .project-item-image {
    min-height: 220px;
  }

  .project-item-content {
    padding: 22px;
  }

  .project-item-content h3 {
    font-size: 1.5rem;
  }

  .project-item-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .intro-section h1 {
    font-size: 2rem;
  }

  .projects-title {
    font-size: 28px;
  }

  .project-item-image {
    min-height: 190px;
  }
}

/* =========================================================
   Imprint page
   ========================================================= */
.imprint-header {
  padding: 2rem 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/BodyBackground2w.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  background-position: center 50%;
}

/* =========================================================
   Account Page
   Isolated from global .card / home card styles
   ========================================================= */

.account-page {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
  border-radius: 15px;
}

.account-page>h1 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.account-page>p {
  color: #4b5563;
  margin-bottom: 2rem;
}

.account-card {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  padding: 28px;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.account-card h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1.45rem;
}

.account-card h3 {
  color: #111827;
}

.account-card p {
  color: #4b5563;
}

.account-card .input-box {
  max-width: 100%;
}

.account-card .input-box input,
.account-card .input-box textarea {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}

.account-card .input-box input::placeholder,
.account-card .input-box textarea::placeholder {
  color: #9ca3af;
}

.account-card .btn {
  border-radius: 10px;
}

.account-card.danger {
  border-color: #c0392b;
}

@media (max-width: 768px) {
  .account-page {
    padding: 3rem 1rem;
  }

  .account-card {
    padding: 22px;
    margin: 22px auto;
  }
}

.hosting-empty-state {
  margin-top: 18px;
  padding: 18px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.hosting-empty-state strong {
  display: block;
  margin-bottom: 6px;
}

.hosting-empty-state p {
  margin: 0;
  color: #666;
}

.hosting-submission-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.hosting-status-card {
  padding: 18px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
}

.hosting-status-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hosting-reference {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74, 158, 232, .1);
  color: #2A6AAA;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hosting-status-head h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
}

.hosting-status-head p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.hosting-status-pill {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(74, 158, 232, .1);
  color: #2A6AAA;
  border: 1px solid rgba(74, 158, 232, .25);
  font-size: 12px;
  font-weight: 800;
}

.hosting-status-pill.status-hosted,
.hosting-status-pill.status-approved {
  background: rgba(61, 204, 142, .1);
  color: #21865d;
  border-color: rgba(61, 204, 142, .28);
}

.hosting-status-pill.status-needs_changes {
  background: rgba(240, 160, 48, .1);
  color: #9a6418;
  border-color: rgba(240, 160, 48, .32);
}

.hosting-status-pill.status-rejected {
  background: rgba(232, 90, 90, .1);
  color: #a83232;
  border-color: rgba(232, 90, 90, .32);
}

.hosting-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hosting-timeline-step {
  padding: 13px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  text-align: center;
  color: #777;
  font-size: 12px;
  font-weight: 700;
}

.hosting-timeline-dot {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #777;
}

.hosting-timeline-step.is-done {
  background: rgba(61, 204, 142, .08);
  border-color: rgba(61, 204, 142, .3);
  color: #1f6f50;
}

.hosting-timeline-step.is-done .hosting-timeline-dot {
  background: rgba(61, 204, 142, .12);
  border-color: rgba(61, 204, 142, .32);
  color: #21865d;
}

.hosting-timeline-step.is-current {
  box-shadow: 0 0 0 4px rgba(74, 158, 232, .1);
  border-color: rgba(74, 158, 232, .38);
}

.hosting-status-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: grid;
  gap: 5px;
}

.hosting-status-note strong {
  display: block;
}

.hosting-status-note span {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.hosting-status-note.warning {
  background: rgba(240, 160, 48, .08);
  border-color: rgba(240, 160, 48, .3);
}

.hosting-status-note.error {
  background: rgba(232, 90, 90, .08);
  border-color: rgba(232, 90, 90, .3);
}

@media (max-width: 820px) {
  .hosting-status-head {
    display: grid;
  }

  .hosting-timeline {
    grid-template-columns: 1fr;
  }

  .hosting-timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .hosting-timeline-dot {
    margin: 0;
    flex: 0 0 auto;
  }
}


/* =========================================================
   Responsive (mobile only) — Desktop remains unchanged
   ========================================================= */

/* Tablets / smaller laptops */
@media (max-width: 1024px) {
  .card {
    width: 32%;
  }
}

/* Mobile/tablet breakpoint */
@media (max-width: 768px) {

  /* IMPORTANT for iOS Safari: fixed background often looks broken/janky */
  .hero,
  .contact-wrapper {
    background-attachment: scroll;
  }

  /* Navigation: allow wrapping and reduce spacing */


  /* Hero: let height adapt */
  .hero {
    height: auto;
    padding: 3.5rem 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  /* Home cards stack */
  .info-cards {
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 1.25rem;
  }

  .card {
    width: 100%;
  }

  /* About: stack blocks nicely */
  .about-content {
    padding: 3rem 1.25rem;
  }

  .about-text {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem;
  }

  .about-text p {
    text-align: left;
  }

  /* Team grid: smaller cards */
  .team-member {
    max-width: 180px;
  }

  /* Services spacing */
  .services-content {
    padding: 3rem 1.25rem;
  }

  .services-header {
    padding: 3rem 1.25rem;
  }

  /* Projects slider: reduce height */
  .project-container {
    height: 500px;
  }

  .project-description {
    font-size: 16px;
  }
}

/*Account Page*/
.upload-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}

.upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.modern-submit {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.modern-submit:hover {
  background: #333;
}

/*INPUT BOXES*/
.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #ffffff;
  opacity: .7;
}

.input-box input::-webkit-input-placeholder,
.input-box textarea::-webkit-input-placeholder {
  color: #ffffff;
}

.input-box input::-moz-placeholder,
.input-box textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

/* =========================================================
   Website Hosting Page
   ========================================================= */

.bre-hosting-hero {
  position: relative;
  overflow: hidden;
  padding: 118px max(24px, calc((100vw - var(--bre-max)) / 2)) 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 92px);
}

.bre-hosting-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 14%, rgba(74, 158, 232, .16), transparent 34%),
    repeating-linear-gradient(45deg, transparent 0, transparent 119px, rgba(74, 158, 232, .14) 119px, rgba(74, 158, 232, .14) 120px);
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 0% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 96% 92% at 0% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

.bre-hosting-hero>* {
  position: relative;
  z-index: 1;
}

.bre-hosting-hero h1 {
  margin: 24px 0 24px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--bre-text);
  font-weight: 800;
  max-width: 820px;
}

.bre-hosting-hero h1 span {
  color: var(--bre-sky);
}

.bre-hosting-copy {
  max-width: 650px;
  color: var(--bre-text-2);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.bre-hosting-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 720px;
}

.bre-hosting-meta-card {
  padding: 15px 16px;
  border: 1px solid var(--bre-border);
  border-radius: 15px;
  background: rgba(20, 25, 32, .72);
}

.bre-hosting-meta-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 23px;
  color: var(--bre-text);
  line-height: 1;
  margin-bottom: 7px;
}

.bre-hosting-meta-card span {
  color: var(--bre-text-3);
  font-size: 12px;
  line-height: 1.45;
}

.bre-hosting-panel {
  border: 1px solid var(--bre-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 33, 48, .96), rgba(15, 19, 25, .98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.bre-hosting-panel-body {
  padding: 24px;
}

.bre-hosting-checklist {
  display: grid;
  gap: 12px;
}

.bre-hosting-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--bre-border);
  border-radius: 15px;
  background: rgba(20, 25, 32, .72);
}

.bre-hosting-check i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(74, 158, 232, .12);
  color: var(--bre-sky);
  flex: 0 0 auto;
}

.bre-hosting-check strong {
  display: block;
  color: var(--bre-text);
  font-size: 14px;
  margin-bottom: 4px;
}

.bre-hosting-check span {
  display: block;
  color: var(--bre-text-3);
  font-size: 12px;
  line-height: 1.55;
}

.bre-hosting-section {
  padding: 80px max(24px, calc((100vw - var(--bre-max)) / 2));
  border-top: 1px solid var(--bre-border);
  background: rgba(15, 19, 25, .9);
}

.bre-hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.bre-hosting-feature {
  border: 1px solid var(--bre-border);
  border-radius: 20px;
  background: rgba(20, 25, 32, .78);
  padding: 24px;
  transition: transform .55s var(--bre-silk), border-color .55s var(--bre-silk), background .55s var(--bre-silk);
}

.bre-hosting-feature:hover {
  transform: translateY(-4px);
  border-color: var(--bre-border-2);
  background: rgba(26, 33, 48, .92);
}

.bre-hosting-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(74, 158, 232, .11);
  border: 1px solid rgba(74, 158, 232, .18);
  color: var(--bre-sky);
  margin-bottom: 22px;
}

.bre-hosting-feature h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--bre-text);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.bre-hosting-feature p {
  color: var(--bre-text-2);
  line-height: 1.72;
  margin: 0;
  font-size: 14px;
}

.bre-upload-section {
  position: relative;
  overflow: hidden;
  padding: 86px max(24px, calc((100vw - var(--bre-max)) / 2));
}

.bre-upload-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 86% 12%, rgba(74, 158, 232, .14), transparent 34%);
  pointer-events: none;
}

.bre-upload-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

.bre-process-card,
.bre-upload-card {
  border: 1px solid var(--bre-border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26, 33, 48, .9), rgba(15, 19, 25, .95));
  overflow: hidden;
  box-shadow: 0 22px 62px rgba(0, 0, 0, .24);
}

.bre-process-body,
.bre-upload-body {
  padding: 24px;
}

.bre-process-list {
  display: grid;
  gap: 14px;
}

.bre-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--bre-border);
  border-radius: 16px;
  background: rgba(20, 25, 32, .7);
}

.bre-step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(74, 158, 232, .12);
  color: var(--bre-sky-2);
  border: 1px solid rgba(74, 158, 232, .2);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.bre-process-step strong {
  display: block;
  color: var(--bre-text);
  margin-bottom: 5px;
  font-size: 15px;
}

.bre-process-step span {
  color: var(--bre-text-3);
  font-size: 13px;
  line-height: 1.58;
}

.bre-hosting-form {
  display: grid;
  gap: 16px;
}

.bre-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bre-form-group {
  display: grid;
  gap: 8px;
}

.bre-form-group.full {
  grid-column: 1 / -1;
}

.bre-form-group label {
  color: var(--bre-text);
  font-size: 13px;
  font-weight: 700;
}

.bre-form-group input,
.bre-form-group textarea,
.bre-form-group select {
  width: 100%;
  border: 1px solid var(--bre-border);
  border-radius: 13px;
  background: rgba(11, 17, 24, .9);
  color: var(--bre-text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .35s var(--bre-silk), box-shadow .35s var(--bre-silk), background .35s var(--bre-silk);
}

.bre-form-group textarea {
  min-height: 124px;
  resize: vertical;
}

.bre-form-group input:focus,
.bre-form-group textarea:focus,
.bre-form-group select:focus {
  border-color: var(--bre-sky);
  box-shadow: 0 0 0 4px rgba(74, 158, 232, .11);
  background: rgba(11, 17, 24, 1);
}

.bre-upload-dropzone {
  position: relative;
  border: 1px dashed var(--bre-border-2);
  border-radius: 18px;
  background: rgba(11, 17, 24, .72);
  padding: 26px;
  text-align: center;
  transition: border-color .35s var(--bre-silk), background .35s var(--bre-silk), transform .35s var(--bre-silk);
  cursor: pointer;
}

.bre-upload-dropzone:hover,
.bre-upload-dropzone.is-dragover {
  border-color: var(--bre-sky);
  background: rgba(74, 158, 232, .08);
  transform: translateY(-2px);
}

.bre-upload-dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.bre-upload-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: rgba(74, 158, 232, .12);
  color: var(--bre-sky);
  border: 1px solid rgba(74, 158, 232, .2);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.bre-upload-dropzone strong {
  display: block;
  color: var(--bre-text);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  margin-bottom: 7px;
}

.bre-upload-dropzone span {
  display: block;
  color: var(--bre-text-3);
  font-size: 13px;
  line-height: 1.6;
}

.bre-selected-file {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--bre-border);
  border-radius: 13px;
  background: rgba(20, 25, 32, .72);
  color: var(--bre-text-2);
  font-size: 13px;
}

.bre-selected-file.is-visible {
  display: flex;
}

.bre-selected-file i {
  color: var(--bre-green);
}

.bre-form-note {
  color: var(--bre-text-3);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.bre-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.bre-frontend-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 160, 48, .28);
  background: rgba(240, 160, 48, .08);
  color: #F0C174;
  font-size: 12px;
  font-weight: 700;
}

.bre-requirements {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--bre-border);
  border-radius: 16px;
  background: rgba(20, 25, 32, .64);
}

.bre-requirements strong {
  display: block;
  color: var(--bre-text);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.bre-requirements ul {
  margin: 0;
  padding-left: 18px;
  color: var(--bre-text-2);
  line-height: 1.8;
  font-size: 13px;
}

.bre-hosting-cta {
  padding: 76px max(24px, calc((100vw - var(--bre-max)) / 2));
  border-top: 1px solid var(--bre-border);
  background: rgba(15, 19, 25, .92);
}

.bre-hosting-cta-card {
  border: 1px solid var(--bre-border-2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(74, 158, 232, .14), rgba(20, 25, 32, .94));
  padding: 34px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.bre-hosting-cta-card h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--bre-text);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.bre-hosting-cta-card p {
  color: var(--bre-text-2);
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
}

.bre-hosting-alert {
  margin: 24px max(24px, calc((100vw - var(--bre-max)) / 2)) 0;
  padding: 16px 18px;
  border-radius: 16px;
  display: grid;
  gap: 5px;
  position: relative;
  z-index: 5;
}

.bre-hosting-alert strong {
  color: var(--bre-text);
  font-family: 'Outfit', sans-serif;
}

.bre-hosting-alert span {
  color: var(--bre-text-2);
  font-size: 14px;
}

.bre-hosting-alert.success {
  border: 1px solid rgba(61, 204, 142, .28);
  background: rgba(61, 204, 142, .09);
}

.bre-hosting-alert.error {
  border: 1px solid rgba(232, 90, 90, .28);
  background: rgba(232, 90, 90, .09);
}

@media (max-width: 980px) {

  .bre-hosting-hero,
  .bre-upload-layout {
    grid-template-columns: 1fr;
    padding-top: 88px;
    gap: 44px;
  }

  .bre-hosting-grid {
    grid-template-columns: 1fr;
  }

  .bre-hosting-cta-card {
    display: block;
  }

  .bre-hosting-cta-card .bre-btn-primary {
    margin-top: 22px;
  }
}

@media (max-width: 720px) {
  .bre-hosting-hero {
    padding-top: 72px;
    padding-bottom: 58px;
  }

  .bre-hosting-meta,
  .bre-form-grid {
    grid-template-columns: 1fr;
  }

  .bre-upload-body,
  .bre-process-body,
  .bre-hosting-panel-body {
    padding: 18px;
  }

  .bre-submit-row .bre-btn-primary,
  .bre-submit-row .bre-btn-secondary {
    width: 100%;
  }
}

/* =========================================================
   UTM Generator Tool
   ========================================================= */

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.hero-section {
  text-align: center;
  margin-bottom: 35px;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #111;
  margin-bottom: 12px;
}

.hero-section p {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

.tool-card {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label,
.result-box label,
.shortlink-box label {
  font-weight: 600;
  color: #fff;
}

.form-group input[type="text"],
.form-group input[type="url"],
.result-box textarea,
.shortlink-box input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="url"]::placeholder,
.result-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus,
.result-box textarea:focus,
.shortlink-box input:focus {
  border-color: #00c3ff;
  box-shadow: 0 0 0 4px rgba(0, 195, 255, 0.12);
}

.form-group input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.result-box {
  margin-top: 28px;
}

.result-box textarea {
  min-height: 120px;
  resize: vertical;
  margin-top: 10px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button-row button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button-row button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.shortlink-box {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qr-area {
  margin-top: 18px;
}

.qr-area img {
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 12px;
  border-radius: 18px;
}

.tool-message {
  margin-top: 18px;
  min-height: 22px;
  color: #fff;
}

.tool-message.success {
  color: #3ddc97;
}

.tool-message.error {
  color: #ff6b6b;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 35px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 22px;
  }

  .button-row button {
    width: 100%;
  }

  .qr-area img {
    width: 180px;
    height: 180px;
  }
}

#shortlinkBox.hidden {
  display: none;
}

.show-qr-link {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(0, 195, 255, 0.16);
  color: #8ee8ff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.show-qr-link:hover {
  background: rgba(0, 195, 255, 0.28);
  color: #ffffff;
  transform: translateY(-2px);
}

.tool-login-link {
  color: #0217d5;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s ease;
}

.tool-login-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.workspace-create-box {
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workspace-create-box label {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.workspace-create-row,
.workspace-add-member {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.workspace-add-member {
  grid-template-columns: 1fr 140px auto;
  margin-top: 16px;
}

.workspace-create-row input,
.workspace-add-member input,
.workspace-add-member select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
}

.workspace-add-member select option {
  background: #0b1020;
  color: #fff;
}

.workspace-create-row button,
.workspace-add-member button,
.workspace-remove-member-btn {
  border: none;
  border-radius: 999px;
  padding: 11px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.workspace-manager-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workspace-manager-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.workspace-manager-head strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.workspace-manager-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.workspace-members-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workspace-member-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.workspace-member-row strong,
.workspace-member-row span {
  display: block;
}

.workspace-member-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.workspace-remove-member-btn {
  background: rgba(255, 76, 76, 0.16);
  color: #ff8a8a;
}

.workspace-delete-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 76, 76, 0.16);
  color: #ff8a8a;
  font-weight: 700;
  cursor: pointer;
}

.workspace-delete-btn:hover {
  background: rgba(255, 76, 76, 0.28);
  color: #fff;
}

@media (max-width: 760px) {

  .workspace-create-row,
  .workspace-add-member {
    grid-template-columns: 1fr;
  }

  .workspace-member-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   UTM Generator - Background & Animations
   ========================================================= */

.page-shell {
  position: relative;
  overflow: hidden;
  max-width: none;
  min-height: calc(100vh - 70px);
  padding: 70px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 195, 255, 0.22), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(120, 80, 255, 0.22), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(0, 123, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #05070d 0%, #0b1020 45%, #03040a 100%);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.7;
  pointer-events: none;
  animation: utmFloatGlow 9s ease-in-out infinite alternate;
}

.page-shell::before {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 120px;
  background: rgba(0, 195, 255, 0.22);
}

.page-shell::after {
  width: 340px;
  height: 340px;
  right: -110px;
  bottom: 80px;
  background: rgba(120, 80, 255, 0.22);
  animation-delay: 1.5s;
}

.hero-section,
.tool-card {
  position: relative;
  z-index: 1;
}

.hero-section {
  animation: utmFadeUp 0.8s ease both;
}

.hero-section h1 {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(0, 195, 255, 0.28);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.78);
}

.tool-card {
  max-width: 1100px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: utmFadeUp 0.9s ease 0.12s both;
}

.tool-card>* {
  position: relative;
  z-index: 2;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.55), transparent 35%, rgba(120, 80, 255, 0.45));
  pointer-events: none;
  opacity: 0.7;
}

.form-group,
.result-box,
.shortlink-box {
  animation: utmSoftAppear 0.7s ease both;
}

.form-group:nth-child(1) {
  animation-delay: 0.05s;
}

.form-group:nth-child(2) {
  animation-delay: 0.10s;
}

.form-group:nth-child(3) {
  animation-delay: 0.15s;
}

.form-group:nth-child(4) {
  animation-delay: 0.20s;
}

.form-group:nth-child(5) {
  animation-delay: 0.25s;
}

.form-group:nth-child(6) {
  animation-delay: 0.30s;
}

.form-group:nth-child(7) {
  animation-delay: 0.35s;
}

.form-group input[type="text"],
.form-group input[type="url"],
.result-box textarea,
.shortlink-box input {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus,
.result-box textarea:focus,
.shortlink-box input:focus {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.button-row button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.25);
}

.button-row button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.button-row button:hover::before {
  left: 140%;
}

.qr-area img {
  animation: utmQrPop 0.45s ease both;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.my-links-card {
  margin-top: 28px;
}

.my-links-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.my-links-header h2 {
  margin: 0 0 6px;
  color: #fff;
}

.my-links-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.my-links-header button,
.copy-history-link {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.my-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.my-link-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.my-link-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.my-link-main strong,
.my-link-main span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-link-main span,
.my-link-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.my-link-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

.my-links-empty {
  color: rgba(255, 255, 255, 0.75);
}

.utm-dashboard-card {
  margin-top: 28px;
}

.utm-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.utm-stat-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.utm-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.utm-stat-card strong {
  font-size: 2rem;
  color: #fff;
}

.utm-dashboard-block {
  margin-top: 24px;
}

.utm-dashboard-block h3 {
  color: #fff;
  margin-bottom: 14px;
}

.utm-pro-lock {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 195, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.18);
  color: #fff;
}

.utm-pro-lock i {
  color: #00c3ff;
  font-size: 1.4rem;
  margin-top: 3px;
}

.utm-pro-lock p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.workspace-selector-box {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workspace-selector-box label {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.workspace-selector-box select {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #0b1020;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 50px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.workspace-selector-box select option {
  background: #0b1020;
  color: #ffffff;
}

.workspace-selector-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

/*INSIGHTS DASHBOARD*/
.utm-dashboard-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dashboard-row span {
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-row strong {
  color: #fff;
  white-space: nowrap;
}

.dashboard-row-stacked {
  align-items: flex-start;
}

.dashboard-row-stacked small {
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .utm-dashboard-grid-2 {
    grid-template-columns: 1fr;
  }

  .dashboard-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.delete-history-link {
  border: none;
  border-radius: 100px;
  max-width: 50%;
  padding: 10px 16px;
  background: rgba(255, 76, 76, 0.16);
  color: #ff8a8a;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.delete-history-link:hover {
  background: rgba(255, 76, 76, 0.28);
  color: #ffffff;
}

.billing-card {
  margin-top: 28px;
}

.billing-current-plan {
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(0, 195, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.18);
}

.billing-current-plan span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.billing-current-plan strong {
  font-size: 2rem;
  color: #fff;
}

.billing-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.billing-plan-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.billing-plan-card.featured {
  border-color: rgba(0, 195, 255, 0.38);
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.13), rgba(255, 255, 255, 0.07));
}

.billing-plan-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.4rem;
}

.billing-plan-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.billing-plan-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.billing-plan-card li {
  margin-bottom: 6px;
}

.request-plan-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.request-plan-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

#billingSection.hidden {
  display: none !important;
}

#billingSection.hidden {
  display: none !important;
}

.paypal-plan-btn {
  position: relative;
  overflow: hidden;

  width: 100%;
  border: none;
  border-radius: 18px;

  padding: 16px 20px;

  cursor: pointer;

  background:
    linear-gradient(135deg,
      #0070ba 0%,
      #003087 100%);

  color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  font-size: 1rem;
  font-weight: 600;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;

  box-shadow:
    0 10px 30px rgba(0, 112, 186, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  margin-top: 12px;
}

.paypal-plan-btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 120%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent);

  transition: left 0.7s ease;
}

.paypal-plan-btn:hover::before {
  left: 120%;
}

.paypal-plan-btn:hover {
  transform: translateY(-3px) scale(1.015);

  box-shadow:
    0 18px 45px rgba(0, 112, 186, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  filter: brightness(1.04);
}

.paypal-plan-btn:active {
  transform: translateY(0px) scale(0.99);
}

.paypal-btn-content {
  display: flex;
  align-items: center;
  gap: 14px;

  text-align: left;
}

.paypal-btn-content i.fa-paypal {
  font-size: 2rem;

  color: #ffffff;

  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.paypal-btn-text {
  display: flex;
  flex-direction: column;
}

.paypal-btn-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.paypal-btn-text small {
  font-size: 0.78rem;
  opacity: 0.82;
  margin-top: 2px;
}

.paypal-btn-arrow {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(4px);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.paypal-plan-btn:hover .paypal-btn-arrow {
  transform: translateX(4px);

  background: rgba(255, 255, 255, 0.2);
}

.paypal-trust-note {
  margin-top: 10px;

  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);

  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 760px) {
  .billing-plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .utm-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .my-links-header {
    flex-direction: column;
    align-items: stretch;
  }

  .my-link-item {
    grid-template-columns: 1fr;
  }
}

@keyframes utmFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes utmSoftAppear {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes utmFloatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes utmQrPop {
  from {
    opacity: 0;
    transform: scale(0.86) rotate(-2deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-shell::before,
  .page-shell::after,
  .hero-section,
  .tool-card,
  .form-group,
  .result-box,
  .shortlink-box,
  .qr-area img {
    animation: none;
  }
}

/* Small phones */
@media (max-width: 600px) {
  .intro-section h1 {
    font-size: 2rem;
  }

  .projects-title {
    font-size: 28px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
  }

  .nav-arrow i {
    font-size: 18px;
  }

  /* Forms */
  .login-form {
    width: 100%;
    max-width: 420px;
    margin: 0 12px;
  }

  .contact-form {
    padding: 28px 18px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  nav {
    padding: 0.85rem;
  }

  nav ul li a {
    font-size: 1rem;
    padding: 0.35rem 0.6rem;
  }

  .about-header {
    padding: 4rem 1.25rem;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .about-header p {
    font-size: 1.05rem;
  }

  .reset-form {
    padding: 30px 20px;
  }

  .reset-form h1 {
    font-size: 20px;
  }

  .reset-form .btn {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .hero,
  .about-header,
  .services-header,
  .blog-header,
  .imprint-header {
    min-height: 360px;
    background-size: cover;
    background-position: center center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 44px 18px 34px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
  }
}