:root {
  --primary: #4b647d;
  --accent: #88a6c9;
  --light: #f5f7fb;
  --dark: #1c2532;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 46px;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15%;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  color: var(--white);
  transition:
    background 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.navbar.navbar-solid {
  background: rgba(245, 247, 251, 0.98);
  background-color: rgba(245, 247, 251, 0.98);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

.logo {
  height: 60px;
  width: 150px;
}

.logo img {
  height: 60px;
  width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-right: 10px;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (min-width: 901px) {
  .nav-links a.active-nav::after {
    width: 100%;
    background: var(--primary);
  }
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: currentColor;
  margin: 5px 0;
}

.fullmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: 0.4s;
  z-index: 2000;
}

.fullmenu.active {
  transform: translateY(0);
}

.fullmenu a {
  color: white;
  font-size: 2rem;
  margin: 20px 0;
  text-decoration: none;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 120px 8% 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.7)),
    url("image/Hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.6) 60%,
    rgba(15, 23, 42, 0.9) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-energy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  mix-blend-mode: soft-light;
}

.hero-aura {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.32;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(248, 250, 252, 0.35) 0,
    rgba(148, 163, 184, 0.55) 32%,
    rgba(15, 23, 42, 0.95) 80%
  );
}

.hero-aura--left {
  top: 60%;
  left: -18%;
  animation: heroAuraFloat 28s ease-in-out infinite;
}

.hero-aura--right {
  top: -4%;
  right: -12%;
  opacity: 0.24;
  animation: heroAuraFloatReverse 32s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 30% 18%,
      rgba(248, 250, 252, 0.95) 0,
      rgba(248, 250, 252, 0.8) 16%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(136, 166, 201, 0.85) 0,
      transparent 65%
    );
  box-shadow:
    0 0 55px rgba(248, 250, 252, 0.9),
    0 0 150px rgba(136, 166, 201, 0.75);
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroOrbPulse 8s ease-in-out infinite;
}

.hero-orb-inner {
  width: 82%;
  height: 82%;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 10%,
    rgba(255, 255, 255, 0.9) 0,
    rgba(255, 255, 255, 0.7) 22%,
    rgba(254, 243, 199, 0.7) 55%,
    rgba(251, 191, 36, 0.6) 85%
  );
}

.hero-orb-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 1.2s ease-out 0.4s forwards;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f9fafb;
  text-shadow:
    0 20px 50px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(15, 23, 42, 1);
}

.hero-slogan {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #e5edf7;
  padding: 0.65rem 2.2rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(248, 250, 252, 0.18) 0,
    rgba(15, 23, 42, 0.8) 45%,
    rgba(15, 23, 42, 0.98) 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.85);
  backdrop-filter: blur(20px);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(148, 163, 184, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 520px;
}

.hero-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--white);
  color: #0b1120;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  background: #f9fafb;
}

/* Sprachwahl im Hero */

.hero-lang {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-lang-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* ANIMATIONS */

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroAuraFloat {
  0% {
    transform: translate3d(0, 10px, 0) scale(1);
    opacity: 0.26;
  }
  50% {
    transform: translate3d(6px, -12px, 0) scale(1.03);
    opacity: 0.38;
  }
  100% {
    transform: translate3d(0, 10px, 0) scale(1);
    opacity: 0.26;
  }
}

@keyframes heroAuraFloatReverse {
  0% {
    transform: translate3d(0, -6px, 0) scale(1);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(-8px, 12px, 0) scale(1.04);
    opacity: 0.32;
  }
  100% {
    transform: translate3d(0, -6px, 0) scale(1);
    opacity: 0.22;
  }
}

@keyframes heroOrbPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow:
      0 0 36px rgba(248, 250, 252, 0.85),
      0 0 110px rgba(136, 166, 201, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 0 78px rgba(248, 250, 252, 0.98),
      0 0 180px rgba(136, 166, 201, 0.95);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow:
      0 0 36px rgba(248, 250, 252, 0.85),
      0 0 110px rgba(136, 166, 201, 0.7);
  }
}

/* SECTIONS */

section {
  padding: 70px 8%;
  background: var(--light);
}

/* ABOUT */

#about {
  position: relative;
  padding: 100px 8% 70px;
  text-align: center;
}

#about h2 {
  margin-bottom: 32px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-media-text {
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-photo-inline {
  float: left;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b1120;
  box-shadow: var(--shadow);
  margin: 6px 24px 12px 0;
}

.about-photo-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p + p {
  margin-top: 0.8rem;
}

.about-cta-row {
  clear: both;
  margin-top: 2rem;
  text-align: center;
}

.about-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(75, 100, 125, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.about-open-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.about-open-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.about-overlay,
.service-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 3000;
}

.about-overlay.active,
.service-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-overlay-backdrop,
.service-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-overlay-dialog,
.service-overlay-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  color: var(--dark);
  z-index: 1;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}

.about-overlay.active .about-overlay-dialog,
.service-overlay.active .service-overlay-dialog {
  transform: translateY(0) scale(1);
}

.about-overlay-eyebrow,
.service-overlay-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(136, 166, 201, 0.14);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-overlay-dialog h3,
.service-overlay-dialog h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--primary);
  text-align: left;
}

.about-overlay-content,
.service-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-overlay-content p,
.service-overlay-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(28, 37, 50, 0.9);
  max-width: 100%;
}

.about-overlay-close,
.service-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(75, 100, 125, 0.08);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.about-overlay-close:hover,
.service-overlay-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.about-overlay-close:focus-visible,
.service-overlay-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body.overlay-open {
  overflow: hidden;
}

/* SERVICES */

.services-intro {
  max-width: 700px;
  margin: 0 auto 22px;
  text-align: center;
  opacity: 0.9;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-timeline {
  position: relative;
  max-width: 1100px;
  margin: 26px auto 0;
  padding: 6px 0 10px;
}

.services-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  overflow: hidden;
}

.services-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--dark);
  border-radius: 999px;
  transition: height 0.2s ease-out;
}

.services-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: flex-start;
  position: relative;
}

.service-marker {
  grid-column: 2;
  justify-self: center;
  width: 16px;
  height: 16px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--primary);
  box-shadow:
    0 0 10px rgba(15, 23, 42, 0.35),
    0 0 16px rgba(148, 163, 184, 0.7);
  z-index: 2;
}

.service-item-left .service-card {
  grid-column: 1;
  justify-self: flex-end;
}

.service-item-right .service-card {
  grid-column: 3;
  justify-self: flex-start;
}

.service-card {
  width: 100%;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 10px 14px 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.26);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(136, 166, 201, 0.16) 0,
    transparent 55%
  );
  opacity: 0.9;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.service-img-wrap {
  width: 100%;
  max-width: 200px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.45);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body {
  width: 100%;
  text-align: center;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 4px 0 6px;
  color: var(--dark);
  font-family: system-ui, "Segoe UI", sans-serif;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
}

.service-btn:hover {
  background: #3b5167;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-item:hover .service-card {
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2);
  border-color: rgba(148, 163, 184, 0.7);
}

/* CONTACT */

#contact {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 720px;
  margin: 28px auto 0;
  align-items: stretch;
}

.contact-form {
  background: var(--white);
  padding: 24px 26px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  text-align: left;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.4rem;
}

.form-subline {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.form-meta {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.form-meta a {
  color: var(--primary);
  text-decoration: none;
}

.form-meta a:hover {
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid #dde2ea;
  margin-bottom: 0;
  font-size: 1rem;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  background: #f8f9fc;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(136, 166, 201, 0.35);
  background: #ffffff;
}

textarea {
  height: 130px;
  resize: none;
}

.form-footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.checkbox-inline input {
  width: auto;
  margin-top: 3px;
}

button {
  padding: 15px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
}

button:hover {
  background: #3b5167;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* FOOTER */

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 28px;
}

footer a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  padding: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.lang-btn--active {
  border-color: var(--white);
  box-shadow:
    0 0 0 2px rgba(148, 163, 184, 0.6),
    0 10px 28px rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.24);
}

.lang-flag {
  transform: translateY(1px);
}

.navbar.navbar-solid .lang-btn {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(148, 163, 184, 0.5);
}

.navbar.navbar-solid .lang-btn--active {
  border-color: var(--primary);
  background: var(--light);
  box-shadow:
    0 0 0 2px rgba(136, 166, 201, 0.5),
    0 10px 26px rgba(15, 23, 42, 0.18);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 110px 7% 80px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .hero-slogan {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    padding-inline: 1.7rem;
  }

  .hero-orb {
    width: 500px;
    height: 500px;
  }

  .hero-aura {
    width: 420px;
    height: 420px;
  }

  .nav-center {
    gap: 16px;
  }
}

@media (max-width: 800px) {
  body {
    text-align: center;
  }

  section {
    padding: 60px 7%;
  }

  .hero-inner {
    justify-content: center;
  }

  #about {
    padding: 80px 7% 60px;
  }

  .about-media-text {
    text-align: center;
  }

  .about-photo-inline {
    float: none;
    margin: 0 auto 16px;
  }

  .about-text {
    text-align: left;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-top: 20px;
  }

  .contact-form {
    text-align: center;
  }

  .contact-wrapper p,
  .contact-wrapper h3 {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-timeline {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  section {
    padding: 55px 7%;
  }

  .hero {
    padding: 105px 7% 70px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-slogan {
    font-size: 0.98rem;
    letter-spacing: 0.14em;
    padding-inline: 1.4rem;
  }

  .hero-orb {
    width: 450px;
    height: 450px;
  }

  .hero-aura {
    width: 360px;
    height: 360px;
  }

  .hero-cta {
    width: 100%;
    max-width: 260px;
  }

  .service-card {
    max-width: 260px;
  }

  .service-body h3 {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .service-img-wrap {
    width: 100%;
    max-width: 150px;
    height: 90px;
  }
}

@media (min-width: 901px) {
  .service-card {
    max-width: 320px;
  }
}