
:root{
  --bg:#02060a;
  --bg2:#07101a;
  --panel:#0a121c;
  --text:#f7f9fc;
  --muted:#a9bacb;
  --red:#ff303c;
  --blue:#16aaff;
  --line:#17364c;
  --line2:#294b64;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 0,rgba(255,48,60,.14),transparent 26%),
    radial-gradient(circle at 88% 4%,rgba(22,170,255,.16),transparent 28%),
    linear-gradient(180deg,#020509,#07111a 58%,#020509);
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,92%);margin:auto}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(2,6,10,.96);
  border-bottom:1px solid rgba(22,170,255,.30);
  backdrop-filter:blur(12px);
}
.nav{min-height:74px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:12px;min-width:250px}
.brand-logo{
  width:48px;height:48px;border-radius:12px;
  background:
    linear-gradient(135deg,rgba(255,48,60,.16),rgba(22,170,255,.16)),
    url('assets/brand-mark.jpg') left center/cover no-repeat;
  border:1px solid var(--line2);
  box-shadow:0 0 24px rgba(22,170,255,.12);
}
.brand-copy b{font-size:20px;letter-spacing:-.02em}
.brand-copy b span{color:var(--blue)}
.brand-copy small{display:block;color:#b4c4d4;font-size:9px;letter-spacing:.20em;margin-top:3px}
.menu{display:flex;gap:22px;align-items:center;font-size:12px;font-weight:800}
.menu a{padding:28px 0 23px;border-bottom:2px solid transparent}
.menu a:hover,.menu a.active{border-bottom-color:var(--blue);color:#fff}
.socials{display:flex;gap:12px;color:#dce8f3;font-size:16px}
.menu-toggle{display:none;background:none;border:1px solid var(--line2);color:#fff;border-radius:8px;padding:8px 11px}

/* HERO */
.hero{
  min-height:650px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(115deg,rgba(255,48,60,.06),transparent 34%),
    linear-gradient(245deg,rgba(22,170,255,.08),transparent 36%),
    #03080d;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(255,48,60,.22) 0 1px,transparent 1px 100%),
    linear-gradient(rgba(22,170,255,.12) 0 1px,transparent 1px 100%);
  background-size:120px 120px;
  mask-image:linear-gradient(180deg,transparent,rgba(0,0,0,.35),transparent);
  opacity:.22;
}
.hero::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:200px;
  background:linear-gradient(180deg,transparent,#02070b);
}
.hero-inner{
  position:relative;z-index:2;
  min-height:650px;
  display:grid;grid-template-columns:1.12fr .88fr;
  gap:42px;align-items:center;
  padding:60px 0;
}
.kicker{font-size:11px;letter-spacing:.27em;text-transform:uppercase;color:#75ccff;font-weight:900}
.hero h1{
  font-size:clamp(54px,8vw,104px);
  line-height:.86;margin:14px 0 18px;
  letter-spacing:-.055em;text-transform:uppercase;
}
.hero h1 .dream{color:var(--red)}
.hero h1 .make{background:linear-gradient(90deg,#fff 0 45%,var(--blue));-webkit-background-clip:text;color:transparent}
.hero p{font-size:19px;line-height:1.55;color:#d2deea;max-width:720px}
.slogan{margin-top:24px;font-size:22px;font-weight:900;line-height:1.25;text-transform:uppercase}
.slogan .r{color:var(--red)} .slogan .b{color:var(--blue)}
.visual-wrap{position:relative;display:grid;place-items:center}
.visual-glow{
  position:absolute;width:410px;height:410px;border-radius:50%;
  background:conic-gradient(from 180deg,var(--red),transparent 30%,var(--blue),transparent 72%,var(--red));
  filter:blur(28px);opacity:.28;
}
.visual{
  position:relative;width:min(430px,86vw);aspect-ratio:1/1;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.72)),
    url('assets/agency-visual.jpg') center/cover no-repeat;
  border:1px solid var(--line2);
  box-shadow:0 0 60px rgba(22,170,255,.16),0 0 46px rgba(255,48,60,.10);
  overflow:hidden;
}
.visual::after{
  content:"ALEX1995H_AGENCY";
  position:absolute;left:18px;right:18px;bottom:16px;
  font-size:12px;font-weight:900;letter-spacing:.18em;
  color:#fff;text-align:center;
  text-shadow:0 0 12px rgba(22,170,255,.7);
}

/* STRIPS */
.features{
  display:grid;grid-template-columns:repeat(5,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#04101a;
}
.feature{padding:24px 16px;text-align:center;border-right:1px solid var(--line)}
.feature:last-child{border-right:0}
.feature i{font-style:normal;font-size:30px;display:block;margin-bottom:8px}
.feature strong{display:block;font-size:13px}
.feature small{display:block;color:var(--muted);margin-top:5px}
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:#06111b;border-bottom:1px solid var(--line);
}
.stat{padding:23px 18px;text-align:center;border-right:1px solid var(--line)}
.stat:last-child{border-right:0}
.stat b{font-size:29px}
.stat span{display:block;color:#a2b5c7;font-size:10px;letter-spacing:.08em;margin-top:4px}

/* CONTENT */
.section{padding:76px 0}
.section h1{font-size:clamp(38px,6vw,70px);text-transform:uppercase;margin:0 0 16px}
.section h2{font-size:30px}
.lead{font-size:18px;line-height:1.72;color:#b8c8d7;max-width:820px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:linear-gradient(180deg,rgba(12,22,33,.96),rgba(5,10,16,.96));
  border:1px solid #1d4662;border-radius:12px;padding:24px;
  box-shadow:0 0 26px rgba(22,170,255,.07);
}
.card.red{border-color:#63272f}
.card h3{margin:8px 0 10px}.card p{color:#adbed0;line-height:1.65}
.icon{font-size:34px}
.team{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.member{
  min-height:260px;border:1px solid #294a62;border-radius:12px;padding:22px;
  background:
    linear-gradient(180deg,transparent,rgba(2,6,10,.96)),
    radial-gradient(circle at 50% 18%,rgba(22,170,255,.20),transparent 34%),
    linear-gradient(135deg,#111b26,#05090f);
  display:flex;flex-direction:column;justify-content:flex-end;
}
.member h3{margin:0 0 4px}.member span{color:#58c6ff;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.member p{color:#b5c5d5}
.faq-item{border:1px solid #214a67;border-radius:9px;margin-bottom:12px;background:#07111a}
.faq-q{width:100%;padding:17px 18px;background:none;border:0;color:white;font-weight:800;text-align:left;display:flex;justify-content:space-between;cursor:pointer}
.faq-a{display:none;color:#b8c8d8;padding:0 18px 18px;line-height:1.6}
.faq-item.open .faq-a{display:block}
.legal{color:#c4d2df;line-height:1.8}
.legal h2{color:white;margin-top:30px}
.notice{font-size:13px;color:#8fa3b6;margin-top:16px}

/* FOOTER */
footer{border-top:1px solid var(--line);background:#02060a;padding:26px 0;color:#99adbf;font-size:12px}
.footer-row{display:flex;justify-content:space-between;gap:20px;align-items:center}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}

@media(max-width:900px){
  .menu{display:none;position:absolute;top:74px;left:0;right:0;background:#03080d;padding:14px 22px;flex-direction:column;align-items:stretch;border-bottom:1px solid var(--line)}
  .menu.open{display:flex}
  .menu a{padding:10px 0}
  .menu-toggle{display:block}
  .socials{display:none}
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero p{margin-inline:auto}
  .visual-wrap{margin-top:10px}
  .features{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr 1fr}
  .grid-3,.team{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .brand-copy small{display:none}
  .grid-3,.team,.features,.stats{grid-template-columns:1fr}
  .feature,.stat{border-right:0;border-bottom:1px solid var(--line)}
  .hero-inner{padding:44px 0}
  .hero{min-height:auto}
  .slogan{font-size:18px}
  .footer-row{flex-direction:column;align-items:flex-start}
}


/* TEAM V3 */
.member-photo{
  padding:0;
  min-height:420px;
  overflow:hidden;
  justify-content:flex-start;
  background:#050a10;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.member-photo:hover{
  transform:translateY(-4px);
  border-color:#1aaeff;
  box-shadow:0 0 32px rgba(22,170,255,.18),0 0 20px rgba(255,48,60,.10);
}
.member-image{
  height:245px;
  width:100%;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  border-bottom:1px solid #214a67;
}
.member-content{padding:20px 20px 22px}
.member-content h3{font-size:20px}
.apply-btn{
  margin-top:15px;
  min-height:46px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid #ff303c;
  border-radius:9px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  color:#fff;
  background:linear-gradient(90deg,rgba(255,48,60,.12),rgba(22,170,255,.10));
  box-shadow:0 0 18px rgba(255,48,60,.12);
}
.apply-btn:hover{
  border-color:#16aaff;
  box-shadow:0 0 24px rgba(22,170,255,.24),0 0 16px rgba(255,48,60,.16);
}
.apply-btn b{font-size:22px;color:#16aaff}
@media(max-width:600px){
  .member-photo{min-height:390px}
  .member-image{height:225px}
}


/* =========================================================
   V6 RESPONSIVE SYSTEM
   Optimiert für Desktop, Laptop, Tablet und Smartphone
   ========================================================= */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* HEADER / NAVIGATION */
.site-header {
  width: 100%;
}

.nav {
  position: relative;
  min-height: 72px;
  gap: 18px;
}

.brand {
  min-width: 0;
  flex: 0 1 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy b {
  white-space: nowrap;
}

.menu {
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  white-space: nowrap;
}

.menu-toggle {
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: clamp(520px, 72vh, 690px);
}

.hero-inner {
  min-height: inherit;
  padding-block: clamp(48px, 7vw, 82px);
}

.hero h1 {
  font-size: clamp(48px, 7.3vw, 100px);
  line-height: .9;
  overflow-wrap: anywhere;
}

.hero p {
  font-size: clamp(16px, 1.45vw, 20px);
}

.slogan {
  font-size: clamp(18px, 2vw, 24px);
}

.visual {
  width: min(100%, 430px);
}

.visual-glow {
  width: min(86vw, 410px);
  height: min(86vw, 410px);
}

/* CONTENT */
.section {
  padding-block: clamp(48px, 7vw, 84px);
}

.section h1 {
  font-size: clamp(38px, 6vw, 70px);
  overflow-wrap: anywhere;
}

.section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.lead,
.legal,
.card p,
.member p {
  overflow-wrap: anywhere;
}

.grid-3,
.team,
.features,
.stats {
  min-width: 0;
}

.card,
.member,
.feature,
.stat {
  min-width: 0;
}

/* TEAM */
.member-photo {
  min-height: 0;
}

.member-image {
  aspect-ratio: 16 / 10;
  height: auto;
}

.member-content {
  display: flex;
  flex-direction: column;
}

.apply-btn {
  width: 100%;
  min-width: 0;
}

/* FOOTER */
.footer-row {
  flex-wrap: wrap;
}

/* LARGE DESKTOP */
@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 64px));
  }
}

/* LAPTOP / SMALL DESKTOP */
@media (max-width: 1100px) {
  .container {
    width: min(1000px, calc(100% - 36px));
  }

  .menu {
    gap: 16px;
    font-size: 11px;
  }

  .brand-copy b {
    font-size: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr .8fr;
    gap: 28px;
  }

  .grid-3,
  .team {
    gap: 16px;
  }
}

/* TABLET LANDSCAPE / PORTRAIT */
@media (max-width: 900px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    max-width: calc(100% - 96px);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand-copy b {
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 40px;
  }

  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -14px;
    right: -14px;
    z-index: 100;
    background: rgba(2, 6, 10, .985);
    padding: 12px 18px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(0,0,0,.38);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .menu a.active {
    border-bottom-color: var(--blue);
  }

  .socials {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }

  .hero p {
    margin-inline: auto;
  }

  .visual-wrap {
    margin-inline: auto;
    width: min(100%, 520px);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .team {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-row {
    gap: 16px;
  }
}

/* SMARTPHONE */
@media (max-width: 640px) {
  .container {
    width: calc(100% - 22px);
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
  }

  .brand-copy b {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    min-width: 66px;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero-inner {
    padding-block: 38px 44px;
  }

  .kicker {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: .18em;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 68px);
    line-height: .92;
    margin-top: 10px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .slogan {
    font-size: 17px;
  }

  .visual {
    width: min(100%, 390px);
  }

  .features,
  .stats,
  .grid-3,
  .team {
    grid-template-columns: 1fr;
  }

  .feature,
  .stat {
    border-right: 0;
  }

  .feature {
    padding: 20px 14px;
  }

  .stat {
    padding: 20px 14px;
  }

  .section h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .section h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .lead {
    font-size: 16px;
  }

  .card {
    padding: 20px;
  }

  .member {
    min-height: 220px;
  }

  .member-photo {
    min-height: 0;
  }

  .member-image {
    aspect-ratio: 1 / 1;
  }

  .member-content {
    padding: 18px;
  }

  .apply-btn {
    font-size: 11px;
    min-height: 44px;
    padding-inline: 14px;
  }

  .faq-q {
    font-size: 14px;
    gap: 12px;
    align-items: flex-start;
  }

  .faq-a {
    font-size: 14px;
  }

  .legal {
    font-size: 15px;
    line-height: 1.75;
  }

  .legal h2 {
    margin-top: 26px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 14px;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 18px);
  }

  .brand-copy b {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .section h1 {
    font-size: 34px;
  }

  .apply-btn {
    letter-spacing: .05em;
  }
}

/* TOUCH DEVICES */
@media (hover: none) {
  .member-photo:hover {
    transform: none;
  }

  .menu a,
  .apply-btn,
  .faq-q {
    -webkit-tap-highlight-color: transparent;
  }
}


/* =========================================================
   V8 TEAM-BILDER KOMPLETT SICHTBAR
   ========================================================= */

/* Bildbereich nicht mehr beschneiden */
.team .member-photo .member-image {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #02070b;
  border-bottom: 1px solid #214a67;
}

/* Alle drei oberen Profilkarten gleichmäßig */
.team .member-photo {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.team .member-photo .member-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team .member-photo .member-content p {
  margin-bottom: 16px;
}

.team .member-photo .apply-btn {
  margin-top: auto;
}

/* Auf breiten Bildschirmen etwas mehr Platz für die quadratischen Bilder */
@media (min-width: 901px) {
  .team .member-photo .member-image {
    aspect-ratio: 1 / 1;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .team .member-photo .member-image {
    aspect-ratio: 1 / 1;
  }
}

/* Handy */
@media (max-width: 640px) {
  .team .member-photo .member-image {
    aspect-ratio: 1 / 1;
  }
}
