/* Google Fonts werden via functions.php geladen */

/* ── VARIABLEN ── */
:root {
  --navy:       #0A0A0F;
  --navy-2:     #0D0D16;
  --border:     rgba(255,255,255,0.07);
  --violet:     #1a9e8a;
  --cyan:       #3ecfb0;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.5);
  --muted-2:    rgba(255,255,255,0.3);
  --container:  1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.gradient-text {
  background: linear-gradient(135deg, #1a9e8a 0%, #3ecfb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #1a9e8a, #3ecfb0);
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 0 60px rgba(26,158,138,.3);
}
.btn-primary:hover { opacity: .9; transform: scale(1.03); }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  background: transparent;
  color: rgba(255,255,255,.6) !important;
  font-weight: 500;
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn:hover { border-color: rgba(255,255,255,.3); color: #fff !important; background: rgba(255,255,255,.05); }

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a8e6d9;
  margin-bottom: .75rem;
  display: block;
}

.badge { display: inline-block; padding: .2rem .6rem; border-radius: 999px; font-size: .72rem; border: 1px solid; }
.badge.status-live        { color: #2bd4bd; border-color: rgba(43,212,189,.3); background: rgba(43,212,189,.08); }
.badge.status-coming_soon { color: #f7b955; border-color: rgba(247,185,85,.3); background: rgba(247,185,85,.08); }
.badge.status-beta        { color: #ff7e99; border-color: rgba(255,126,153,.3); background: rgba(255,126,153,.08); }

/* ── ANIMATIONEN ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-slow {
  0%, 100% { opacity: .4; }
  50%       { opacity: .8; }
}
@keyframes bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(5px); }
}

.animate-float      { animation: float 5s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 3s ease-in-out infinite; }
.animate-bounce     { animation: bounce .8s ease-in-out infinite alternate; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  border-radius: 16px;
  z-index: 100;
  transition: all .5s;
}
.site-header.scrolled {
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--white);
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.custom-logo {
  height: 28px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .custom-logo { height: 25px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  font-weight: 400;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn-primary {
  padding: .5rem 1.25rem;
  font-size: .875rem;
  margin-left: .5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  background: #0D0D16;
  gap: 1.25rem;
}
.nav-mobile a { color: rgba(255,255,255,.6); font-size: .95rem; transition: color .2s; }
.nav-mobile a:hover { color: var(--white); }
.site-header.open .nav-mobile { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blobs .blob-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 384px; height: 384px;
  border-radius: 50%;
  background: rgba(26,158,138,.2);
  filter: blur(120px);
  animation: pulse-slow 3s ease-in-out infinite;
}
.hero-blobs .blob-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(62,207,176,.15);
  filter: blur(120px);
  animation: pulse-slow 3s ease-in-out infinite;
  animation-delay: 1.5s;
}
.hero-blobs .blob-3 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 256px; height: 256px;
  border-radius: 50%;
  background: rgba(62,207,176,.05);
  filter: blur(100px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-content.hidden-start {
  opacity: 0;
  transform: translateY(40px);
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(62,207,176,.3);
  background: rgba(62,207,176,.05);
  border-radius: 100px;
  color: #a8e6d9;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.hero h1 .line-muted { color: rgba(255,255,255,.25); }

.hero > div > div > p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 420px;
  margin: 0 auto 4rem;
}
.hero-card {
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  animation: float 5s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1s; }
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-card-icon.teal { background: rgba(26,158,138,.2); }
.hero-card-icon.teal-2 { background: rgba(62,207,176,.15); }
.hero-card-text { text-align: left; }
.hero-card-text strong { display: block; font-size: .85rem; font-weight: 600; color: var(--white); }
.hero-card-text span   { font-size: .72rem; color: rgba(255,255,255,.3); }

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.2);
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color .2s;
}
.hero-scroll:hover { color: rgba(255,255,255,.5); }
.hero-scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: bounce .8s ease-in-out infinite alternate;
}

/* ── ABOUT ── */
.about-section {
  padding: 7rem 0;
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  left: 0; top: 40%;
  width: 288px; height: 288px;
  background: radial-gradient(circle, rgba(26,158,138,.1), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a8e6d9;
  margin-bottom: 1rem;
  display: block;
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -.5px;
}

.about-text {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: .75rem;
}
.about-text strong { color: rgba(255,255,255,.8); font-weight: 600; }
.about-text-2 {
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-highlight {
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color .3s;
  border: 1px solid rgba(255,255,255,.07);
}
.about-highlight:hover { border-color: rgba(255,255,255,.15); }

.about-highlight-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.about-highlight:hover .about-highlight-icon { transform: scale(1.1); }

.about-highlight-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .2rem;
}
.about-highlight-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .15rem;
}
.about-highlight-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── SKILLS ── */
.skills-section { padding: 7rem 0; position: relative; }
.skills-section::before {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(62,207,176,.08), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.skills-header { text-align: center; margin-bottom: 3.5rem; }
.skills-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.5px;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.skill-item { }
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.skill-name { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8); }
.skill-pct  { font-size: .85rem; color: rgba(255,255,255,.3); }
.skill-bar {
  height: 5px;
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  overflow: hidden;
}
.skill-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.skill-bar span.violet { background: linear-gradient(90deg, #1a9e8a, #a8e6d9); }
.skill-bar span.cyan   { background: linear-gradient(90deg, #3ecfb0, #a8e6d9); }
.skill-bar span.green  { background: linear-gradient(90deg, #10b981, #34d399); }
.skill-bar span.yellow { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.skill-bar span.blue   { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.skill-bar span.pink   { background: linear-gradient(90deg, #ec4899, #f9a8d4); }

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.skill-tag {
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.45);
  transition: all .2s;
  cursor: default;
}
.skill-tag:hover {
  border-color: rgba(26,158,138,.4);
  color: #a8e6d9;
  background: rgba(26,158,138,.08);
}

/* IHK Badge in Skills */
.ihk-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.ihk-badge-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform .2s;
}
.ihk-badge-link:hover { transform: translateY(-3px); }
.ihk-badge-img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(26,158,138,.25));
  transition: filter .3s;
}
.ihk-badge-link:hover .ihk-badge-img { filter: drop-shadow(0 0 30px rgba(62,207,176,.35)); }
.ihk-badge-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}
.ihk-badge-link:hover .ihk-badge-label { color: var(--cyan); }

/* ── APPS ── */
.apps-section { padding: 7rem 0; position: relative; }

.apps-header { text-align: center; margin-bottom: 3.5rem; }
.apps-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}
.apps-subtitle { color: rgba(255,255,255,.35); font-size: .9rem; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.app-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  transition: transform .3s, border-color .3s;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.12); }

.app-card-img {
  position: relative;
  height: 160px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.app-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: transform .5s, opacity .3s;
}
.app-card:hover .app-card-img img { transform: scale(1.05); opacity: .75; }
.app-card-img .badge { position: absolute; top: .75rem; right: .75rem; }
.app-card-cat {
  position: absolute;
  top: .75rem; left: .75rem;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  border: 1px solid rgba(62,207,176,.3);
  background: rgba(26,158,138,.15);
  color: #a8e6d9;
}

.app-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.app-card-body h3 {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .4rem;
  color: var(--white);
}
.app-card-body p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; flex: 1; }
.app-card-tech { font-size: .72rem; color: rgba(255,255,255,.2); margin-top: .75rem; }
.app-card-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .6rem;
  font-size: .78rem;
  color: #a8e6d9;
  transition: color .2s;
}
.app-card-link:hover { color: var(--cyan); }

/* ── CONTACT ── */
.contact-section { padding: 7rem 0; position: relative; }

.contact-header { text-align: center; margin-bottom: 2.5rem; }
.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}
.contact-sub { color: rgba(255,255,255,.35); font-size: .9rem; }

.contact-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 2rem;
}

.contact-wrap .wpcf7 input[type="text"],
.contact-wrap .wpcf7 input[type="email"],
.contact-wrap .wpcf7 textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
  margin-bottom: .875rem;
}
.contact-wrap .wpcf7 input:focus,
.contact-wrap .wpcf7 textarea:focus { border-color: rgba(26,158,138,.5); }
.contact-wrap .wpcf7 input::placeholder,
.contact-wrap .wpcf7 textarea::placeholder { color: rgba(255,255,255,.2); }
.contact-wrap .wpcf7 textarea { resize: vertical; min-height: 130px; }
.contact-wrap .wpcf7 label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .35rem;
}
.contact-wrap .wpcf7 .wpcf7-submit {
  width: 100%;
  padding: .875rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a9e8a, #3ecfb0);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  font-family: 'Inter', sans-serif;
}
.contact-wrap .wpcf7 .wpcf7-submit:hover { opacity: .9; }
.contact-wrap .wpcf7-response-output {
  border: none !important;
  border-radius: 8px;
  padding: .6rem 1rem;
  margin-top: .75rem;
  font-size: .82rem;
  background: rgba(43,212,189,.08);
  color: #2bd4bd;
}

/* ── ARCHIVE ── */
.archive-header { padding: 9rem 0 3rem; text-align: center; }
.archive-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.5px;
}
.archive-body { padding: 3rem 0 6rem; }

/* ── SINGLE ── */
.single-hero { padding: 8rem 0 3rem; }
.single-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.single-hero img { border-radius: 14px; width: 100%; height: 280px; object-fit: cover; border: 1px solid rgba(255,255,255,.07); }
.single-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.5px; margin-bottom: .75rem; }
.single-excerpt { color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.single-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.single-content { padding: 3rem 0 6rem; max-width: 680px; color: rgba(255,255,255,.65); line-height: 1.8; font-size: .925rem; }
.single-content h2, .single-content h3 { font-weight: 700; color: var(--white); margin: 1.75rem 0 .6rem; }

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer p { color: rgba(255,255,255,.2); font-size: .8rem; }
.site-footer a { color: rgba(255,255,255,.25); transition: color .2s; }
.site-footer a:hover { color: rgba(255,255,255,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .single-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero h1 { letter-spacing: -.5px; }
  .hero-cards { grid-template-columns: 1fr 1fr; max-width: 340px; }
  .apps-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT RECHTE SPALTE: LOGO + BADGE ── */
.about-right-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-visual-card {
  width: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-visual-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(62,207,176,.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}
.about-logo-big-img {
  max-width: 70%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(46,196,169,.15));
  transition: filter .3s, transform .3s;
}
.about-visual-card:hover .about-logo-big-img {
  filter: drop-shadow(0 0 40px rgba(46,196,169,.3));
  transform: scale(1.04);
}

.about-badge-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.about-badge-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: transform .2s;
}
.about-badge-link:hover { transform: translateY(-3px); }
.about-badge-img {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(26,158,138,.2));
  transition: filter .3s;
}
.about-badge-link:hover .about-badge-img {
  filter: drop-shadow(0 0 28px rgba(62,207,176,.35));
}
.about-badge-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}
.about-badge-link:hover .about-badge-label { color: var(--cyan); }

@media (max-width: 900px) {
  .about-right-col { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-visual-card { max-width: 320px; }
}

/* ── CF7 FALLBACK ── */
.cf7-fallback {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cf7-fallback p {
  color: rgba(255,255,255,.4);
  font-size: .95rem;
}
.cf7-fallback .btn-primary {
  font-size: 1rem;
}
.cf7-hint {
  font-size: .78rem !important;
  color: rgba(255,255,255,.25) !important;
  line-height: 1.8;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  max-width: 420px;
  text-align: left;
}
.cf7-hint strong { color: rgba(62,207,176,.7); }
.skip-link {
    position: absolute;
    left: -9999px;
}