:root {
  --bg: #070a13;
  --card: rgba(255,255,255,0.07);
  --card-strong: rgba(255,255,255,0.11);
  --text: #eef3ff;
  --muted: #a8b3cf;
  --line: rgba(255,255,255,0.13);
  --blue: #5ddcff;
  --purple: #8b5cf6;
  --green: #54ffa3;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top left, #14204a 0, transparent 34%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .35;
  pointer-events: none;
  z-index: -1;
}
.orb-one { background: var(--blue); top: 12%; left: -8%; }
.orb-two { background: var(--purple); bottom: 5%; right: -8%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(18px);
  background: rgba(7,10,19,.75);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #06101d;
  font-weight: 900;
}
.nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--text)!important; }
.menu-btn { display: none; background: none; color: var(--text); border: 0; font-size: 28px; }

.section-padding { padding: 88px 6vw; }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; min-height: 88vh; }
.badge, .eyebrow, .label, .popular {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(93,220,255,.28);
  color: var(--blue);
  background: rgba(93,220,255,.08);
  font-weight: 700;
  font-size: 13px;
}
h1 { font-size: clamp(44px, 7vw, 84px); line-height: .95; letter-spacing: -0.06em; margin: 24px 0; }
h2 { font-size: clamp(32px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.04em; margin: 12px 0; }
h3 { font-size: 24px; margin: 0 0 12px; }
p { line-height: 1.75; }
.hero-text, .section-text, .muted { color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
}
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #07101e; box-shadow: 0 18px 50px rgba(93,220,255,.22); }
.btn.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.btn:hover { transform: translateY(-2px); }
.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; color: var(--muted); }

.hero-card, .feature-card, .version-card, .price-card, .cta-card, .beta-box {
  background: linear-gradient(180deg, var(--card-strong), rgba(255,255,255,.045));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 24px; transform: perspective(1000px) rotateY(-5deg) rotateX(3deg); }
.window-bar { display: flex; gap: 8px; margin-bottom: 24px; }
.window-bar span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dashboard-title { display: flex; justify-content: space-between; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.dashboard-title p { color: var(--muted); margin: 0; }
.progress-card { margin: 22px 0; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.06); }
.progress-card div:first-child { display: flex; justify-content: space-between; margin-bottom: 14px; }
.progress { height: 10px; background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); }
.grid-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.grid-cards div { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.06); }
small { color: var(--muted); }
.terminal { margin-top: 18px; padding: 18px; border-radius: 20px; background: #05070c; border: 1px solid var(--line); font-family: ui-monospace, monospace; font-size: 14px; }
.terminal p { margin: 6px 0; color: var(--muted); line-height: 1.4; }
.terminal .green { color: var(--green); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-head { max-width: 780px; margin-bottom: 38px; }
.feature-grid, .version-grid, .pricing-grid { display: grid; gap: 22px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .version-card, .price-card { padding: 28px; }
.feature-card p, .version-card p { color: var(--muted); }
.icon { font-size: 32px; display: inline-block; margin-bottom: 18px; }
.version-grid { grid-template-columns: repeat(2, 1fr); }
ul { padding-left: 20px; color: var(--muted); line-height: 2; }
.highlighted, .premium { border-color: rgba(93,220,255,.45); position: relative; }
.popular { position: absolute; right: 22px; top: 22px; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price { font-size: 44px; font-weight: 900; margin: 10px 0; letter-spacing: -0.04em; }
.beta-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; padding: 42px; margin: 50px 6vw; }
.faq-list { display: grid; gap: 14px; max-width: 900px; }
details { background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 20px; padding: 20px 24px; }
summary { cursor: pointer; font-weight: 800; font-size: 18px; }
details p { color: var(--muted); }
.cta-section { text-align: center; }
.cta-card { padding: 56px 28px; max-width: 980px; margin: 0 auto; }
.footer { display: flex; justify-content: space-between; gap:32px; flex-wrap: wrap; padding: 34px 6vw; border-top: 1px solid var(--line); color: var(--muted); }

@media (max-width: 920px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 6vw;
    right: 6vw;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7,10,19,.96);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
  }
  .nav.open { display: flex; }
  .hero, .split-section, .beta-box { grid-template-columns: 1fr; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .version-grid { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .section-padding { padding: 64px 6vw; }
}


/* ========================= */
/* MOBILE / TABLET SUPPORT   */
/* ========================= */

@media (max-width: 1024px){

    body{
        overflow:auto !important;
    }

    .frame{
        width:95% !important;
        height:auto !important;
        min-height:95vh !important;
        margin:20px auto !important;
    }

    .frame-content{
        height:auto !important;
        overflow:visible !important;
        padding:35px 22px !important;
    }

    .hero h1{
        font-size:clamp(2.2rem,10vw,4rem) !important;
    }

    .cards{
        grid-template-columns:1fr !important;
    }
}

@media (max-width: 480px){

    .frame{
        width:97% !important;
    }

    .frame-content{
        padding:25px 16px !important;
    }

    .hero h1{
        font-size:2rem !important;
    }

    .button{
        width:100%;
        text-align:center;
    }
}


/* ========================= */
/* LEGAL FOOTER + MODALS     */
/* ========================= */

.footer.legal-footer{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:28px 6vw 34px;
  border-top:0;
  color:var(--muted);
  text-align:center;
}

.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:24px;
}

.footer-links button{
  border:0;
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-weight:700;
  cursor:pointer;
  padding:0;
  transition:.25s ease;
}

.footer-links button:hover{
  color:var(--blue);
  text-shadow:0 0 18px rgba(93,220,255,.38);
}

.footer.legal-footer p{
  margin:0;
  font-size:14px;
}

.legal-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(5,7,14,.78);
  backdrop-filter:blur(16px);
}

.legal-modal.active{
  display:flex;
}

.legal-modal-box{
  position:relative;
  width:min(650px,100%);
  max-height:84vh;
  overflow:auto;
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(93,220,255,.24);
  background:linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.055));
  box-shadow:var(--shadow);
}

.legal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-size:28px;
  line-height:1;
}

.legal-close:hover{
  color:var(--blue);
}

.legal-badge{
  display:inline-flex;
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.28);
  color:var(--blue);
  background:rgba(93,220,255,.08);
  font-weight:700;
  font-size:13px;
  margin-bottom:18px;
}

.legal-modal-box h2{
  margin:0 0 18px;
  font-size:clamp(28px,4vw,42px);
}

.legal-modal-box p{
  color:var(--muted);
  margin:0 0 14px;
}

.legal-modal-box a{
  color:var(--blue);
  font-weight:800;
}

@media (max-width: 640px){
  .footer-links{
    gap:14px;
  }

  .footer-links button{
    font-size:14px;
  }

  .legal-modal-box{
    padding:28px 22px;
  }
}


/* ========================= */
/* EXTENDED LEGAL MODALS     */
/* ========================= */

.legal-modal-box.legal-large{
  width:min(850px,100%);
}

.legal-modal-box h3{
  margin:24px 0 8px;
  font-size:20px;
  color:var(--text);
}

.footer-links{
  max-width:1040px;
}

.footer-links button{
  white-space:nowrap;
}

@media (max-width: 760px){
  .footer-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 16px;
  }

  .footer-links button{
    white-space:normal;
  }
}

@media (max-width: 420px){
  .footer-links{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* DOWNLOAD SECTION          */
/* ========================= */

.download-section{
  padding-top:70px;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.download-card{
  min-width:340px;

  background:linear-gradient(180deg, var(--card-strong), rgba(255,255,255,.045));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:28px;
}

.download-card.locked{
  opacity:.68;
}

.disabled-download{
  pointer-events:none;
  opacity:.55;
  cursor:not-allowed;
}

.download-card.unlocked{
  opacity:1;
  border-color:rgba(93,220,255,.45);
}

.download-card.unlocked .disabled-download{
  pointer-events:auto;
  opacity:1;
  cursor:pointer;
  background:linear-gradient(135deg, var(--blue), var(--purple));
  color:#07101e;
}

.download-hint{
  display:block;
  margin-top:14px;
  color:var(--muted);
}

@media (max-width:920px){
  .download-grid{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* DOWNLOAD MODAL            */
/* ========================= */

.nav-link-button{
  border:0;
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-weight:600;
  cursor:pointer;
  padding:0;
}

.nav-link-button:hover{
  color:var(--text);
}

.popup-download-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}

.popup-download-card{
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
}

.popup-download-card.locked{
  opacity:.68;
}

.popup-download-card.unlocked{
  opacity:1;
  border-color:rgba(93,220,255,.45);
}

.disabled-download{
  pointer-events:none;
  opacity:.55;
  cursor:not-allowed;
}

.popup-download-card.unlocked .disabled-download{
  pointer-events:auto;
  opacity:1;
  cursor:pointer;
}

.download-hint{
  display:block;
  margin-top:12px;
  color:var(--muted);
}

@media (max-width:720px){
  .popup-download-grid{
    grid-template-columns:1fr;
  }
}

/* PRIVATE + PRO DOWNLOAD MODAL */

.popup-download-grid.three-downloads{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

@media (max-width:980px){
  .popup-download-grid.three-downloads{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* DEMO NOTICE               */
/* ========================= */

.demo-notice{
  margin:20px 0 24px;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid rgba(93,220,255,.28);
  background:rgba(93,220,255,.08);
}

.demo-notice strong{
  display:block;
  color:var(--blue);
  margin-bottom:8px;
  font-size:18px;
}

.demo-notice span{
  display:block;
  color:var(--muted);
  line-height:1.7;
}


/* ========================= */
/* CLICKABLE FEATURE POPUPS  */
/* ========================= */

.feature-card-clickable{
  cursor:pointer;
  position:relative;
}

.feature-card-clickable:hover{
  transform:translateY(-4px);
  border-color:rgba(93,220,255,.45);
}

.feature-more{
  display:inline-flex;
  margin-top:16px;
  color:var(--blue);
  font-size:13px;
  font-weight:800;
}

.feature-detail-box{
  width:min(1050px,100%);
}

.feature-screenshot-frame{
  overflow:hidden;
  margin:24px 0;
  border-radius:26px;
  border:1px solid var(--line);
  background:#05070c;
  box-shadow:0 22px 65px rgba(0,0,0,.34);
}

.feature-screenshot-frame img{
  display:block;
  width:100%;
  aspect-ratio:16/9.5;
  object-fit:cover;
}

.feature-detail-list{
  margin-top:18px;
  padding-left:20px;
}

.feature-detail-list li{
  color:var(--muted);
  line-height:1.9;
}

.feature-screen-note{
  margin-top:22px!important;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(93,220,255,.22);
  background:rgba(93,220,255,.07);
  color:var(--muted)!important;
}


/* ========================= */
/* REAL PROGRAM PREVIEWS     */
/* ========================= */

.feature-card-clickable{
  cursor:pointer;
  position:relative;
}

.feature-card-clickable:hover{
  transform:translateY(-4px);
  border-color:rgba(93,220,255,.45);
}

.feature-more{
  display:inline-flex;
  margin-top:16px;
  color:var(--blue);
  font-size:13px;
  font-weight:800;
}

.feature-detail-box{
  width:min(1180px,100%);
}

.program-preview-duo{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin:24px 0;
}

.program-preview-shot{
  overflow:hidden;
  position:relative;
  border-radius:24px;
  border:1px solid var(--line);
  background:#05070c;
  box-shadow:0 22px 65px rgba(0,0,0,.34);
}

.program-preview-shot span{
  position:absolute;
  z-index:2;
  top:16px;
  left:16px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.28);
  background:rgba(7,10,19,.72);
  color:var(--blue);
  font-weight:800;
  font-size:13px;
  backdrop-filter:blur(10px);
}

.program-preview-shot img{
  display:block;
  width:100%;
  aspect-ratio:16/9.5;
  object-fit:cover;
}

.feature-screen-note{
  margin-top:22px!important;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(93,220,255,.22);
  background:rgba(93,220,255,.07);
  color:var(--muted)!important;
}

@media (max-width:850px){
  .program-preview-duo{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* FAQ TWO COLUMN LAYOUT     */
/* ========================= */

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

@media (max-width: 900px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* FAQ PRIVAT / PRO DETAILS  */
/* ========================= */

.faq-inner-list{
  margin:14px 0 0;
  padding-left:22px;
}

.faq-inner-list li{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:6px;
}

.faq details ul.faq-inner-list{
  max-width:100%;
}


/* ========================= */
/* FAQ FINAL GRID            */
/* ========================= */

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.faq-grid details{
  margin:0;
}

@media (max-width: 900px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}


/* ========================= */
/* PAYMENT FOOTER BADGES     */
/* ========================= */

.footer-payment-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin:8px 0 28px;
}

.payment-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.22);
  background:rgba(255,255,255,.04);
  color:var(--blue);
  font-size:13px;
  font-weight:800;
  letter-spacing:.3px;
  backdrop-filter:blur(10px);
  transition:.25s ease;
}

.payment-badge:hover{
  border-color:rgba(93,220,255,.48);
  background:rgba(93,220,255,.08);
  transform:translateY(-2px);
}


/* ========================= */
/* POINT 1: HERO ANIMATION   */
/* ========================= */

.mouse-glow{
  position:fixed;
  width:420px;
  height:420px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(93,220,255,.16) 0%, rgba(139,92,246,.08) 38%, transparent 70%);
  filter:blur(22px);
  opacity:.75;
  pointer-events:none;
  z-index:-1;
  transition:opacity .35s ease;
}

.bg-orb{
  animation:orbFloat 12s ease-in-out infinite alternate;
}

.orb-two{
  animation-delay:-4s;
}

.hero-card{
  animation:heroFloat 6.5s ease-in-out infinite;
  will-change:transform;
}

.hero-content .badge,
.hero-content h1,
.hero-text,
.hero-actions,
.trust-row{
  animation:heroFadeUp .85s ease both;
}

.hero-content h1{ animation-delay:.08s; }
.hero-text{ animation-delay:.16s; }
.hero-actions{ animation-delay:.24s; }
.trust-row{ animation-delay:.32s; }

.hero::after{
  content:"";
  position:absolute;
  inset:auto 8vw 8vh auto;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px solid rgba(93,220,255,.14);
  box-shadow:0 0 45px rgba(93,220,255,.08);
  animation:pulseRing 7s ease-in-out infinite;
  pointer-events:none;
}

.hero{
  position:relative;
}

@keyframes heroFloat{
  0%,100%{
    transform:perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0);
  }
  50%{
    transform:perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-14px);
  }
}

@keyframes orbFloat{
  0%{
    transform:translate3d(0,0,0) scale(1);
  }
  50%{
    transform:translate3d(24px,-18px,0) scale(1.06);
  }
  100%{
    transform:translate3d(-16px,18px,0) scale(.96);
  }
}

@keyframes heroFadeUp{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulseRing{
  0%,100%{
    opacity:.25;
    transform:scale(.92);
  }
  50%{
    opacity:.65;
    transform:scale(1.08);
  }
}

@media (max-width:920px){
  .hero-card{
    animation:mobileHeroFloat 6.5s ease-in-out infinite;
  }

  @keyframes mobileHeroFloat{
    0%,100%{
      transform:translateY(0);
    }
    50%{
      transform:translateY(-8px);
    }
  }

  .mouse-glow{
    width:300px;
    height:300px;
    opacity:.45;
  }
}

@media (prefers-reduced-motion: reduce){
  .mouse-glow,
  .bg-orb,
  .hero-card,
  .hero-content .badge,
  .hero-content h1,
  .hero-text,
  .hero-actions,
  .trust-row,
  .hero::after{
    animation:none!important;
    transition:none!important;
  }
}


/* ========================= */
/* POINT 2: REQUEST WORKFLOW */
/* ========================= */

.request-modal-box{
  width:min(820px,100%);
}

.request-form{
  margin-top:24px;
  display:grid;
  gap:18px;
}

.request-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.request-form label{
  display:grid;
  gap:8px;
  color:var(--text);
  font-weight:800;
  font-size:14px;
}

.request-form input,
.request-form select,
.request-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:14px 16px;
  font:inherit;
  outline:none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus{
  border-color:rgba(93,220,255,.52);
  box-shadow:0 0 0 4px rgba(93,220,255,.10);
}

.request-form textarea{
  resize:vertical;
  min-height:140px;
}

.request-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:6px;
}

.request-note{
  margin:0!important;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(93,220,255,.18);
  background:rgba(93,220,255,.06);
  color:var(--muted)!important;
  font-size:14px;
}

@media (max-width:720px){
  .request-grid{
    grid-template-columns:1fr;
  }

  .request-actions .btn{
    width:100%;
  }
}


/* ========================= */
/* REQUEST CUSTOM DROPDOWN   */
/* ========================= */

.request-select-field{
  position:relative;
  display:grid;
  gap:8px;
}

.request-label{
  color:var(--text);
  font-weight:800;
  font-size:14px;
}

.request-select-button{
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:14px 16px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  outline:none;
}

.request-select-button:hover,
.request-select-button:focus{
  border-color:rgba(93,220,255,.52);
  box-shadow:0 0 0 4px rgba(93,220,255,.10);
}

.request-select-arrow{
  color:var(--blue);
  font-size:20px;
  line-height:1;
  transition:.2s ease;
}

.request-select-field.open .request-select-arrow{
  transform:rotate(180deg);
}

.request-select-menu{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 8px);
  z-index:10020;
  display:none;
  padding:8px;
  border-radius:18px;
  border:1px solid rgba(93,220,255,.26);
  background:#111620;
  box-shadow:0 22px 55px rgba(0,0,0,.48);
}

.request-select-field.open .request-select-menu{
  display:grid;
  gap:6px;
}

.request-select-menu button{
  width:100%;
  border:0;
  border-radius:13px;
  background:transparent;
  color:var(--text);
  padding:12px 14px;
  text-align:left;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}

.request-select-menu button:hover,
.request-select-menu button.active{
  background:linear-gradient(135deg, rgba(93,220,255,.18), rgba(139,92,246,.18));
  color:var(--blue);
}

.request-form select{
  display:none;
}


@media (max-width:720px){
  .ai-grid{
    grid-template-columns:1fr;
  }

  .ai-card{
    padding:24px;
  }

  .ai-card h3{
    font-size:21px;
  }

  .workflow-chips{
    justify-content:flex-start;
  }
}


/* ========================= */
/* POINT 4: AI WORKFLOW FIX  */
/* ========================= */

.ai-workflow-section{
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

.ai-workflow-section .section-head{
  max-width:920px;
  margin:0 auto 46px;
  text-align:center;
}

.ai-workflow-section .section-head p{
  margin:18px auto 0;
  max-width:760px;
}

.ai-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  align-items:stretch;
}

.ai-card{
  position:relative;
  overflow:hidden;
  min-height:220px;
  padding:32px;
  border-radius:30px;
  border:1px solid rgba(93,220,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  backdrop-filter:blur(16px);
  transition:.35s ease;
}

.ai-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(
    135deg,
    rgba(93,220,255,.10),
    rgba(139,92,246,.04),
    transparent 72%
  );
  opacity:0;
  transition:.35s ease;
}

.ai-card:hover{
  transform:translateY(-8px);
  border-color:rgba(93,220,255,.30);
  box-shadow:0 18px 60px rgba(0,0,0,.34);
}

.ai-card:hover::before{
  opacity:1;
}

.ai-icon{
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  margin-bottom:18px;
  background:linear-gradient(
    135deg,
    rgba(93,220,255,.18),
    rgba(139,92,246,.18)
  );
  font-size:26px;
  box-shadow:0 0 30px rgba(93,220,255,.10);
}

.ai-card h3{
  margin:0 0 12px;
  font-size:26px;
  line-height:1.2;
}

.ai-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.workflow-chips{
  margin-top:38px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.workflow-chips span{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--blue);
  font-weight:700;
  font-size:14px;
  transition:.25s ease;
}

.workflow-chips span:hover{
  transform:translateY(-3px);
  border-color:rgba(93,220,255,.36);
  background:rgba(93,220,255,.10);
}

@media (max-width:1150px){
  .ai-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:720px){
  .ai-workflow-section .section-head{
    text-align:left;
    margin-bottom:32px;
  }

  .ai-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .ai-card{
    min-height:auto;
    padding:24px;
  }

  .ai-card h3{
    font-size:22px;
  }

  .workflow-chips{
    justify-content:flex-start;
  }
}


/* ========================= */
/* MOBILE HEADING ALIGN FIX  */
/* ========================= */

@media (max-width:720px){

  .section-head{
    text-align:center!important;
    margin-left:auto;
    margin-right:auto;
  }

  .section-head p{
    margin-left:auto!important;
    margin-right:auto!important;
    text-align:center!important;
  }

  .section-head .badge{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-content{
    text-align:center;
  }

  .hero-actions{
    justify-content:center;
  }

  .workflow-chips{
    justify-content:center!important;
  }

  .faq-grid{
    text-align:left;
  }
}


/* ========================= */
/* POINT 5: PREMIUM FX       */
/* ========================= */

.feature-card,
.price-card,
.ai-card,
.faq-grid details,
.preview-card,
.download-card{
  min-width:340px;

  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
  will-change:transform;
}

.feature-card::after,
.price-card::after,
.ai-card::after,
.faq-grid details::after,
.preview-card::after,
.download-card::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:
    radial-gradient(
      420px circle at var(--mx,50%) var(--my,50%),
      rgba(93,220,255,.12),
      transparent 42%
    );
  transition:opacity .28s ease;
}

.feature-card:hover::after,
.price-card:hover::after,
.ai-card:hover::after,
.faq-grid details:hover::after,
.preview-card:hover::after,
.download-card:hover::after{
  opacity:1;
}

.feature-card:hover,
.price-card:hover,
.ai-card:hover,
.preview-card:hover,
.download-card:hover{
  border-color:rgba(93,220,255,.28);
  box-shadow:
    0 22px 60px rgba(0,0,0,.34),
    0 0 30px rgba(93,220,255,.06);
}

.btn{
  position:relative;
  overflow:hidden;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.18) 48%,
      transparent 100%
    );
  transform:translateX(-120%);
  transition:transform .7s ease, opacity .3s ease;
}

.btn:hover::before{
  opacity:1;
  transform:translateX(120%);
}

.btn:hover{
  box-shadow:
    0 12px 34px rgba(93,220,255,.14),
    0 0 18px rgba(139,92,246,.10);
}

.nav a,
.footer-links button{
  position:relative;
}

.nav a::after,
.footer-links button::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    rgba(93,220,255,.95),
    rgba(139,92,246,.95)
  );
  transition:width .28s ease;
}

.nav a:hover::after,
.footer-links button:hover::after{
  width:100%;
}

@media (max-width:720px){

  .feature-card:hover,
  .price-card:hover,
  .ai-card:hover,
  .preview-card:hover,
  .download-card:hover{
    transform:none;
  }

  .feature-card::after,
  .price-card::after,
  .ai-card::after,
  .preview-card::after,
  .download-card::after{
    background:
      radial-gradient(
        240px circle at center,
        rgba(93,220,255,.08),
        transparent 48%
      );
  }
}

@media (prefers-reduced-motion: reduce){

  .feature-card,
  .price-card,
  .ai-card,
  .faq-grid details,
  .preview-card,
  .download-card,
  .btn{
    transition:none!important;
    animation:none!important;
  }
}


/* ========================= */
/* MOBILE TRUST ROW SPACING  */
/* ========================= */

@media (max-width:720px){

  .trust-row{
    gap:10px 14px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .trust-row span{
    margin-right:4px;
  }
}


/* ========================= */
/* MOBILE MENU POLISH        */
/* ========================= */

@media (max-width:920px){

  .site-header{
    padding:16px 5vw;
  }

  .menu-btn{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:16px;
    border:1px solid rgba(93,220,255,.22);
    background:rgba(255,255,255,.055);
    box-shadow:0 0 24px rgba(93,220,255,.06);
    transition:.25s ease;
  }

  .menu-btn:hover{
    border-color:rgba(93,220,255,.42);
    background:rgba(93,220,255,.08);
    color:var(--blue);
  }

  .nav{
    left:5vw;
    right:5vw;
    top:78px;
    gap:10px;
    padding:16px;
    border-radius:26px;
    border:1px solid rgba(93,220,255,.20);
    background:
      linear-gradient(180deg, rgba(18,24,40,.96), rgba(8,12,24,.96));
    backdrop-filter:blur(22px);
    box-shadow:
      0 26px 80px rgba(0,0,0,.48),
      0 0 40px rgba(93,220,255,.08);
  }

  .nav::before{
    content:"ReelFlow Menü";
    display:block;
    padding:10px 12px 14px;
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    letter-spacing:.9px;
    text-transform:uppercase;
    border-bottom:1px solid rgba(255,255,255,.08);
    margin-bottom:4px;
  }

  .nav a,
  .nav .nav-link-button{
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.075);
    background:rgba(255,255,255,.035);
    color:var(--text);
    font-size:15px;
    font-weight:800;
    text-align:left;
  }

  .nav a::before,
  .nav .nav-link-button::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow:0 0 14px rgba(93,220,255,.45);
    margin-right:10px;
    flex:0 0 auto;
  }

  .nav a::after,
  .nav .nav-link-button::after{
    content:"›";
    position:static;
    width:auto;
    height:auto;
    background:none;
    color:var(--blue);
    font-size:22px;
    line-height:1;
    margin-left:auto;
  }

  .nav a:hover,
  .nav .nav-link-button:hover{
    transform:translateY(-2px);
    border-color:rgba(93,220,255,.25);
    background:rgba(93,220,255,.075);
    color:var(--blue);
  }

  .nav .nav-cta{
    margin-top:4px;
    justify-content:center;
    background:linear-gradient(135deg, var(--blue), var(--purple));
    color:#07101e!important;
    border:0;
    box-shadow:0 18px 44px rgba(93,220,255,.16);
  }

  .nav .nav-cta::before{
    background:#07101e;
    box-shadow:none;
  }

  .nav .nav-cta::after{
    color:#07101e;
  }
}

@media (max-width:420px){

  .nav{
    top:74px;
    padding:14px;
  }

  .nav a,
  .nav .nav-link-button{
    min-height:46px;
    font-size:14px;
    padding:0 14px;
  }
}


/* ========================= */

@media (max-width:720px){

  .mini-stat{
    display:flex!important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:16px 18px;
  }

  .mini-stat span,
  .mini-stat small,
  .mini-stat .stat-label{
    margin-right:8px;
    white-space:nowrap;
  }

  .mini-stat strong,
  .mini-stat b,
  .mini-stat .stat-value{
    margin-left:8px;
    white-space:nowrap;
  }

  .hero-card .mini-grid{
    gap:14px;
  }
}

@media (max-width:430px){

  .mini-stat{
    gap:10px;
    padding:15px 14px;
  }

  .mini-stat span,
  .mini-stat small,
  .mini-stat .stat-label{
    margin-right:6px;
  }

  .mini-stat strong,
  .mini-stat b,
  .mini-stat .stat-value{
    margin-left:6px;
  }
}


/* ========================= */

.hero-card .mini-grid .mini-stat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.hero-card .mini-grid .mini-stat span,
.hero-card .mini-grid .mini-stat .stat-label{
  display:inline-block;
  color:var(--muted);
  padding-right:8px;
}

.hero-card .mini-grid .mini-stat strong,
.hero-card .mini-grid .mini-stat b{
  display:inline-block;
  padding-left:8px;
  color:var(--text);
}

@media (max-width:720px){
  .hero-card .mini-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .hero-card .mini-grid .mini-stat{
    min-width:0;
    gap:10px;
  }

  .hero-card .mini-grid .mini-stat span,
  .hero-card .mini-grid .mini-stat .stat-label{
    font-size:clamp(15px, 3.4vw, 18px);
  }

  .hero-card .mini-grid .mini-stat strong,
  .hero-card .mini-grid .mini-stat b{
    font-size:clamp(16px, 3.6vw, 19px);
  }
}

@media (max-width:380px){
  .hero-card .mini-grid{
    grid-template-columns:1fr;
  }
}


/* ========================= */

.hero-stats-grid .hero-stat-item,
.grid-cards > div{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
}

.hero-stats-grid .hero-stat-item small,
.grid-cards > div small{
  display:block!important;
  flex:0 0 auto!important;
  margin:0!important;
  padding:0!important;
  color:var(--muted)!important;
  white-space:nowrap!important;
}

.hero-stats-grid .hero-stat-item b,
.grid-cards > div b{
  display:block!important;
  flex:0 0 auto!important;
  margin:0!important;
  padding:0!important;
  color:var(--text)!important;
  white-space:nowrap!important;
  text-align:right!important;
}

@media (max-width:720px){
  .hero-stats-grid,
  .grid-cards{
    gap:14px!important;
  }

  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    min-height:74px!important;
    padding:18px 20px!important;
    gap:20px!important;
  }

  .hero-stats-grid .hero-stat-item small,
  .grid-cards > div small{
    font-size:18px!important;
    line-height:1!important;
  }

  .hero-stats-grid .hero-stat-item b,
  .grid-cards > div b{
    font-size:20px!important;
    line-height:1!important;
  }
}

@media (max-width:430px){
  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    padding:17px 18px!important;
    gap:18px!important;
  }

  .hero-stats-grid .hero-stat-item small,
  .grid-cards > div small{
    font-size:17px!important;
  }

  .hero-stats-grid .hero-stat-item b,
  .grid-cards > div b{
    font-size:19px!important;
  }
}

@media (max-width:360px){
  .hero-stats-grid,
  .grid-cards{
    grid-template-columns:1fr!important;
  }
}


/* ========================= */
/* HERO STAT TEXT GAP FIX    */
/* ========================= */

.grid-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.grid-cards > div,
.hero-stats-grid .hero-stat-item{
  display:block!important;
  min-height:auto!important;
  padding:20px 22px!important;
  border-radius:22px;
}

.grid-cards > div small,
.hero-stats-grid .hero-stat-item small{
  display:inline-block!important;
  margin:0 12px 0 0!important;
  padding:0!important;
  color:var(--muted)!important;
  white-space:nowrap!important;
  vertical-align:baseline!important;
}

.grid-cards > div b,
.hero-stats-grid .hero-stat-item b{
  display:inline-block!important;
  margin:0!important;
  padding:0!important;
  color:var(--text)!important;
  white-space:nowrap!important;
  vertical-align:baseline!important;
}

@media (max-width:720px){
  .grid-cards{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:16px!important;
  }

  .grid-cards > div,
  .hero-stats-grid .hero-stat-item{
    display:flex!important;
    align-items:baseline!important;
    justify-content:flex-start!important;
    gap:12px!important;
    min-height:82px!important;
    padding:20px 22px!important;
  }

  .grid-cards > div small,
  .hero-stats-grid .hero-stat-item small{
    margin:0!important;
    font-size:clamp(18px, 4.6vw, 24px)!important;
    line-height:1!important;
  }

  .grid-cards > div b,
  .hero-stats-grid .hero-stat-item b{
    margin:0!important;
    font-size:clamp(19px, 4.8vw, 25px)!important;
    line-height:1!important;
  }
}

@media (max-width:390px){
  .grid-cards > div,
  .hero-stats-grid .hero-stat-item{
    padding:18px 18px!important;
    gap:10px!important;
  }

  .grid-cards > div small,
  .hero-stats-grid .hero-stat-item small{
    font-size:17px!important;
  }

  .grid-cards > div b,
  .hero-stats-grid .hero-stat-item b{
    font-size:18px!important;
  }
}


/* ========================= */
/* MOBILE COMPACT POLISH     */
/* ========================= */

@media (max-width:720px){

  body{
    font-size:16px;
  }

  .section,
  .section-padding{
    padding-top:64px!important;
    padding-bottom:64px!important;
  }

  .section-head{
    margin-bottom:28px!important;
  }

  .section-head h2{
    font-size:clamp(34px, 8.5vw, 46px)!important;
    line-height:1.08!important;
    letter-spacing:-1.4px!important;
  }

  .section-head p,
  .section-text{
    font-size:clamp(17px, 4.2vw, 21px)!important;
    line-height:1.65!important;
    max-width:92%!important;
  }

  .hero{
    padding-top:34px!important;
    padding-bottom:58px!important;
  }

  .hero-content h1{
    font-size:clamp(38px, 9vw, 54px)!important;
    line-height:1.04!important;
    letter-spacing:-1.6px!important;
  }

  .hero-text{
    font-size:clamp(18px, 4.4vw, 22px)!important;
    line-height:1.65!important;
    max-width:94%!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  .hero-actions{
    gap:14px!important;
    margin-top:28px!important;
  }

  .trust-row{
    margin-top:26px!important;
    gap:10px 14px!important;
    font-size:clamp(15px, 3.8vw, 18px)!important;
  }

  .hero-card{
    margin-top:42px!important;
  }

  .feature-grid,
  .version-grid,
  .price-grid,
  .ai-grid,
  .faq-grid{
    gap:20px!important;
  }

  .feature-card,
  .version-card,
  .price-card,
  .ai-card{
    padding:26px!important;
    border-radius:26px!important;
  }

  .feature-card h3,
  .version-card h3,
  .price-card h3,
  .ai-card h3{
    font-size:clamp(24px, 6vw, 32px)!important;
    line-height:1.16!important;
  }

  .feature-card p,
  .version-card p,
  .price-card p,
  .ai-card p{
    font-size:clamp(16px, 4vw, 19px)!important;
    line-height:1.65!important;
  }

  .faq-grid details{
    padding:22px!important;
    border-radius:22px!important;
  }

  .faq-grid summary{
    font-size:clamp(19px, 4.8vw, 24px)!important;
    line-height:1.25!important;
  }

  .faq-grid details p,
  .faq-inner-list li{
    font-size:clamp(16px, 4vw, 19px)!important;
    line-height:1.65!important;
  }

  .hero-stats-grid,
  .grid-cards{
    gap:14px!important;
  }

  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    min-height:74px!important;
    padding:16px 18px!important;
    border-radius:20px!important;
    align-items:center!important;
  }

  .hero-stats-grid .hero-stat-item small,
  .grid-cards > div small{
    font-size:clamp(17px, 4.2vw, 21px)!important;
  }

  .hero-stats-grid .hero-stat-item b,
  .grid-cards > div b{
    font-size:clamp(18px, 4.4vw, 22px)!important;
  }

  .terminal{
    margin-top:22px!important;
    padding:22px!important;
    border-radius:22px!important;
  }

  .terminal p{
    font-size:clamp(16px, 4vw, 20px)!important;
    line-height:1.55!important;
  }
}

@media (max-width:430px){

  .section,
  .section-padding{
    padding-top:54px!important;
    padding-bottom:54px!important;
  }

  .section-head h2{
    font-size:clamp(30px, 8.2vw, 40px)!important;
  }

  .hero-content h1{
    font-size:clamp(34px, 8.8vw, 46px)!important;
  }

  .hero-text{
    font-size:17px!important;
  }

  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    min-height:68px!important;
    padding:15px 16px!important;
  }
}


/* ========================= */
/* MOBILE HERO FINE TUNE     */
/* ========================= */

@media (max-width:720px){

  .hero{
    padding-bottom:36px!important;
  }

  .hero-card{
    margin-top:30px!important;
    padding:28px!important;
  }

  .hero-card .card-head{
    margin-bottom:18px!important;
  }

  .hero-card .status{
    padding:18px 20px!important;
    margin-bottom:20px!important;
  }

  .hero-card .status span,
  .hero-card .status small{
    font-size:clamp(16px, 4vw, 19px)!important;
    font-weight:500!important;
  }

  .hero-card .status b,
  .hero-card .status strong{
    font-size:clamp(17px, 4.1vw, 20px)!important;
    font-weight:700!important;
  }

  .hero-stats-grid,
  .grid-cards{
    gap:12px!important;
    margin-top:18px!important;
  }

  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    min-height:58px!important;
    padding:13px 15px!important;
    border-radius:18px!important;
    gap:8px!important;
  }

  .hero-stats-grid .hero-stat-item small,
  .grid-cards > div small{
    font-size:clamp(15px, 3.8vw, 18px)!important;
    font-weight:500!important;
    line-height:1.1!important;
    opacity:.9!important;
  }

  .hero-stats-grid .hero-stat-item b,
  .grid-cards > div b{
    font-size:clamp(15px, 3.8vw, 18px)!important;
    font-weight:650!important;
    line-height:1.1!important;
    letter-spacing:-.2px!important;
  }

  .terminal{
    margin-top:18px!important;
    padding:18px 20px!important;
    border-radius:20px!important;
    max-height:188px!important;
    overflow:hidden!important;
  }

  .terminal p{
    font-size:clamp(14px, 3.6vw, 17px)!important;
    line-height:1.45!important;
    margin:0 0 8px!important;
  }

  .hero + section,
  .hero + .section,
  .hero + .section-padding{
    margin-top:0!important;
    padding-top:42px!important;
  }

  .cards-section{
    padding-top:42px!important;
  }
}

@media (max-width:430px){

  .hero{
    padding-bottom:30px!important;
  }

  .hero-card{
    margin-top:26px!important;
    padding:24px!important;
  }

  .hero-stats-grid .hero-stat-item,
  .grid-cards > div{
    min-height:54px!important;
    padding:12px 13px!important;
  }

  .hero-stats-grid .hero-stat-item small,
  .grid-cards > div small,
  .hero-stats-grid .hero-stat-item b,
  .grid-cards > div b{
    font-size:15px!important;
  }

  .terminal{
    max-height:172px!important;
    padding:16px 18px!important;
  }

  .terminal p{
    font-size:14px!important;
    margin-bottom:7px!important;
  }
}


/* ========================= */

@media (max-width:720px){

  .hero{
    padding-bottom:20px!important;
  }

  .hero-card{
    margin-top:20px!important;
  }

  .hero + section,
  .hero + .section,
  .hero + .section-padding{
    margin-top:0!important;
    padding-top:20px!important;
  }

  .section{
    padding-top:44px!important;
    padding-bottom:44px!important;
  }

  .section-head{
    margin-bottom:20px!important;
  }

  .feature-grid,
  .version-grid,
  .price-grid,
  .ai-grid{
    margin-top:18px!important;
  }

  /* Trust row wieder nebeneinander */
  .trust-row{
    display:flex!important;
    flex-wrap:nowrap!important;
    justify-content:center!important;
    align-items:center!important;
    gap:18px!important;
    margin-top:18px!important;
    white-space:nowrap!important;
  }

  .trust-row span{
    font-size:14px!important;
    display:flex!important;
    align-items:center!important;
    gap:6px!important;
  }
}

@media (max-width:430px){

  .trust-row{
    gap:14px!important;
  }

  .trust-row span{
    font-size:13px!important;
  }

  .section{
    padding-top:38px!important;
    padding-bottom:38px!important;
  }
}


/* ========================= */
/* REAL MOBILE GAP FIX       */
/* ========================= */

@media (max-width:720px){

  /* HERO ENDE */
  .hero{
    padding-bottom:8px!important;
    margin-bottom:0!important;
  }

  .hero-content{
    margin-bottom:0!important;
  }

  .trust-row{
    margin-top:12px!important;
    margin-bottom:10px!important;
    padding-bottom:0!important;

    display:flex!important;
    flex-wrap:nowrap!important;
    justify-content:center!important;
    align-items:center!important;
    gap:14px!important;
  }

  .trust-row span{
    font-size:13px!important;
    line-height:1!important;
  }

  /* HERO CARD DIREKT DANACH */
  .hero-card{
    margin-top:14px!important;
    margin-bottom:0!important;
  }

  /* SECTION ABSTÄNDE GLOBAL */
  section{
    margin-top:0!important;
    margin-bottom:0!important;
  }

  section + section{
    padding-top:18px!important;
  }

  .section,
  .section-padding{
    padding-top:28px!important;
    padding-bottom:28px!important;
  }

  /* TITEL UND TEXT */
  .section-head{
    margin-bottom:14px!important;
  }

  .section-head h2{
    margin-bottom:10px!important;
  }

  .section-head p{
    margin-top:8px!important;
    margin-bottom:0!important;
  }

  /* BEREICH ZWISCHEN TEXT UND FEATURES */
  .about-section,
  .intro-section,
  .features-section{
    padding-bottom:18px!important;
  }

  .feature-grid,
  .version-grid,
  .price-grid,
  .ai-grid{
    margin-top:12px!important;
    gap:16px!important;
  }

  /* FEATURES BADGE */
  .badge{
    margin-bottom:10px!important;
  }
}

@media (max-width:430px){

  .section,
  .section-padding{
    padding-top:22px!important;
    padding-bottom:22px!important;
  }

  section + section{
    padding-top:14px!important;
  }

  .hero-card{
    margin-top:10px!important;
  }

  .trust-row{
    gap:10px!important;
  }

  .trust-row span{
    font-size:12px!important;
  }
}


/* ========================= */
/* FINAL MOBILE GAP + PAYMENT */
/* ========================= */

@media (max-width:720px){

  /* Markierter Bereich: Split-Section kompakter */
  .split-section{
    display:block!important;
    padding-top:24px!important;
    padding-bottom:24px!important;
  }

  .split-section > div{
    margin-bottom:14px!important;
  }

  .split-section .eyebrow{
    margin-bottom:12px!important;
  }

  .split-section h2{
    margin:0!important;
    font-size:clamp(34px, 8.2vw, 46px)!important;
    line-height:1.08!important;
    letter-spacing:-1.4px!important;
  }

  .split-section .section-text{
    margin-top:12px!important;
    margin-bottom:0!important;
    font-size:clamp(18px, 4.3vw, 21px)!important;
    line-height:1.55!important;
  }

  .split-section + .cards-section{
    padding-top:28px!important;
  }

  /* Zahlungsarten Mobile: Label oben, Badges kompakt nebeneinander */
  .footer-payment-bar{
    display:grid!important;
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
    gap:12px!important;
    max-width:520px!important;
    margin:20px auto 26px!important;
    padding:0 22px!important;
  }

  .payment-label{
    grid-column:1 / -1!important;
    margin:0 0 2px!important;
    text-align:center!important;
    font-size:20px!important;
    font-weight:700!important;
    color:var(--muted)!important;
  }

  .payment-badge{
    width:100%!important;
    min-height:46px!important;
    padding:10px 12px!important;
    font-size:16px!important;
    border-radius:999px!important;
  }
}

@media (max-width:430px){

  .split-section{
    padding-top:18px!important;
    padding-bottom:18px!important;
  }

  .split-section > div{
    margin-bottom:10px!important;
  }

  .split-section h2{
    font-size:clamp(31px, 8vw, 40px)!important;
  }

  .split-section .section-text{
    margin-top:8px!important;
    line-height:1.5!important;
  }

  .split-section + .cards-section{
    padding-top:20px!important;
  }

  .footer-payment-bar{
    gap:10px!important;
    padding:0 18px!important;
  }

  .payment-badge{
    min-height:44px!important;
    font-size:15px!important;
  }
}


/* ========================= */
/* MOBILE EYEBROW CENTER FIX */
/* ========================= */

@media (max-width:720px){

  .split-section{
    text-align:center!important;
  }

  .split-section .eyebrow,
  .split-section .badge,
  .split-section .section-badge{
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;

    width:fit-content!important;

    margin-left:auto!important;
    margin-right:auto!important;
    margin-bottom:14px!important;

    text-align:center!important;
  }
}


/* ========================= */
/* MOBILE TAG CLOUD FIX      */
/* ========================= */

@media (max-width:720px){

  .tag-cloud,
  .feature-tags,
  .workflow-tags{
    display:flex!important;
    flex-wrap:wrap!important;
    justify-content:center!important;
    align-items:center!important;

    gap:12px!important;

    width:100%!important;
    max-width:100%!important;

    margin:18px auto 10px!important;
    padding:0 18px!important;

    overflow:hidden!important;
  }

  .tag-cloud .tag,
  .feature-tags .tag,
  .workflow-tags .tag,
  .tag-cloud span,
  .feature-tags span,
  .workflow-tags span{
    flex:0 0 auto!important;

    min-width:auto!important;
    max-width:100%!important;

    padding:12px 18px!important;

    font-size:15px!important;
    line-height:1!important;

    text-align:center!important;
    white-space:nowrap!important;
  }
}

@media (max-width:430px){

  .tag-cloud,
  .feature-tags,
  .workflow-tags{
    gap:10px!important;
    padding:0 14px!important;
  }

  .tag-cloud .tag,
  .feature-tags .tag,
  .workflow-tags .tag,
  .tag-cloud span,
  .feature-tags span,
  .workflow-tags span{
    padding:11px 16px!important;
    font-size:14px!important;
  }
}


/* ========================= */
/* MOBILE TAG CLOUD REFINED  */
/* ========================= */

@media (max-width:720px){

  .tag-cloud,
  .feature-tags,
  .workflow-tags{
    gap:10px!important;
    margin:14px auto 6px!important;
    padding:0 10px!important;
  }

  .tag-cloud .tag,
  .feature-tags .tag,
  .workflow-tags .tag,
  .tag-cloud span,
  .feature-tags span,
  .workflow-tags span{
    padding:10px 15px!important;

    font-size:13px!important;
    font-weight:600!important;
    letter-spacing:-0.2px!important;

    border-radius:999px!important;

    transform:scale(.96)!important;
  }
}

@media (max-width:430px){

  .tag-cloud,
  .feature-tags,
  .workflow-tags{
    gap:8px!important;
    padding:0 8px!important;
  }

  .tag-cloud .tag,
  .feature-tags .tag,
  .workflow-tags .tag,
  .tag-cloud span,
  .feature-tags span,
  .workflow-tags span{
    padding:9px 13px!important;
    font-size:12px!important;
    transform:scale(.94)!important;
  }
}


/* ========================= */
/* REAL WORKFLOW CHIPS FIX   */
/* ========================= */

@media (max-width:720px){

  .workflow-chips{
    display:grid!important;
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
    gap:10px!important;

    width:100%!important;
    max-width:520px!important;

    margin:18px auto 18px!important;
    padding:0 18px!important;

    justify-content:center!important;
    align-items:center!important;
  }

  .workflow-chips span{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;

    padding:10px 12px!important;

    font-size:13px!important;
    font-weight:700!important;
    line-height:1.1!important;

    text-align:center!important;
    white-space:nowrap!important;

    border-radius:999px!important;
  }
}

@media (max-width:430px){

  .workflow-chips{
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
    gap:8px!important;
    padding:0 14px!important;
    margin-top:14px!important;
  }

  .workflow-chips span{
    padding:9px 10px!important;
    font-size:12px!important;
    letter-spacing:-.2px!important;
  }

  .workflow-chips span:nth-child(7),
  .workflow-chips span:nth-child(8){
    grid-column:auto!important;
  }
}


/* ========================= */
/* MOBILE WORKFLOW CLEANUP   */
/* ========================= */

@media (max-width:720px){

  /* Workflow Chips auf Mobile entfernen */
  .workflow-chips{
    display:none!important;
  }

  /* Zahlungsarten harmonischer */
  .payment-badge{
    padding:9px 14px!important;
    font-size:13px!important;
    font-weight:700!important;
    min-height:42px!important;
    border-radius:999px!important;
    letter-spacing:-0.2px!important;
  }

  .footer-payment-bar{
    gap:10px!important;
  }
}

@media (max-width:430px){

  .payment-badge{
    padding:8px 12px!important;
    font-size:12px!important;
    min-height:40px!important;
  }
}


/* ========================= */
/* MOBILE AI CARDS COMPACT   */
/* ========================= */

@media (max-width:720px){

  .ai-grid{
    gap:16px!important;
    margin-top:16px!important;
  }

  .ai-card{
    padding:24px 22px!important;
    min-height:auto!important;
    border-radius:28px!important;
  }

  .ai-card .ai-icon{
    width:66px!important;
    height:66px!important;
    font-size:28px!important;
    margin-bottom:18px!important;
  }

  .ai-card h3{
    font-size:clamp(24px, 6vw, 34px)!important;
    line-height:1.12!important;
    margin-bottom:12px!important;
    letter-spacing:-1px!important;
  }

  .ai-card p{
    font-size:clamp(17px, 4.2vw, 21px)!important;
    line-height:1.5!important;
    margin-bottom:0!important;
  }
}

@media (max-width:430px){

  .ai-card{
    padding:20px 18px!important;
    border-radius:24px!important;
  }

  .ai-card .ai-icon{
    width:58px!important;
    height:58px!important;
    font-size:24px!important;
    margin-bottom:16px!important;
  }

  .ai-card h3{
    font-size:clamp(22px, 5.8vw, 30px)!important;
    margin-bottom:10px!important;
  }

  .ai-card p{
    font-size:16px!important;
    line-height:1.45!important;
  }
}



/* ========================= */
/* FINAL AI CARD SIZE FIX    */
/* ========================= */

@media screen and (max-width:720px){

  body .ai-workflow-section .ai-grid{
    gap:14px!important;
    margin-top:14px!important;
  }

  body .ai-workflow-section .ai-card{
    min-height:0!important;
    height:auto!important;
    padding:18px 18px!important;
    border-radius:24px!important;
  }

  body .ai-workflow-section .ai-card .ai-icon{
    width:52px!important;
    height:52px!important;
    min-width:52px!important;
    min-height:52px!important;
    margin-bottom:14px!important;
    font-size:22px!important;
    border-radius:16px!important;
  }

  body .ai-workflow-section .ai-card h3{
    font-size:24px!important;
    line-height:1.12!important;
    margin:0 0 8px!important;
    letter-spacing:-0.7px!important;
  }

  body .ai-workflow-section .ai-card p{
    font-size:16px!important;
    line-height:1.45!important;
    margin:0!important;
  }
}

@media screen and (max-width:430px){

  body .ai-workflow-section .ai-card{
    padding:16px 16px!important;
    border-radius:22px!important;
  }

  body .ai-workflow-section .ai-card .ai-icon{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    min-height:46px!important;
    margin-bottom:12px!important;
    font-size:20px!important;
  }

  body .ai-workflow-section .ai-card h3{
    font-size:22px!important;
    margin-bottom:7px!important;
  }

  body .ai-workflow-section .ai-card p{
    font-size:15px!important;
    line-height:1.42!important;
  }
}


/* ========================= */
/* MOBILE CARD WIDTH FIX     */
/* ========================= */

@media screen and (max-width:720px){

  /* AI Cards gleiche Breite wie obere Karten */
  body .ai-workflow-section .ai-grid{
    width:100%!important;
    max-width:100%!important;
    padding:0 12px!important;
    margin:14px auto 0!important;
  }

  body .ai-workflow-section .ai-card{
    width:100%!important;
    max-width:100%!important;
    margin:0 auto!important;
  }

  /* FAQ kompakter & harmonischer */
  .faq-grid{
    gap:14px!important;
    padding:0 12px!important;
  }

  .faq-grid details{
    padding:18px 18px!important;
    border-radius:22px!important;
    min-height:auto!important;
  }

  .faq-grid summary{
    font-size:22px!important;
    line-height:1.18!important;
    font-weight:700!important;
    letter-spacing:-0.5px!important;
  }

  .faq-grid details p,
  .faq-grid li{
    font-size:15px!important;
    line-height:1.5!important;
  }
}

@media screen and (max-width:430px){

  body .ai-workflow-section .ai-grid{
    padding:0 10px!important;
  }

  .faq-grid{
    padding:0 10px!important;
  }

  .faq-grid details{
    padding:16px 16px!important;
    border-radius:20px!important;
  }

  .faq-grid summary{
    font-size:20px!important;
  }

  .faq-grid details p,
  .faq-grid li{
    font-size:14px!important;
  }
}



/* ========================= */
/* FINAL MOBILE WIDTH + FAQ  */
/* ========================= */

@media screen and (max-width:720px){

  /* AI-/Workflow-Karten exakt wie obere Karten in der Breite */
  body .ai-workflow-section,
  body .ai-workflow-section .ai-grid{
    width:100%!important;
    max-width:100%!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:0!important;
    padding-right:0!important;
  }

  body .ai-workflow-section .ai-card{
    width:calc(100vw - 48px)!important;
    max-width:calc(100vw - 48px)!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  /* FAQ Schrift deutlich kleiner und weniger fett */
  body .faq-grid details{
    padding:17px 18px!important;
    border-radius:22px!important;
  }

  body .faq-grid summary{
    font-size:18px!important;
    line-height:1.25!important;
    font-weight:650!important;
    letter-spacing:-0.25px!important;
  }

  body .faq-grid details[open] summary{
    margin-bottom:10px!important;
  }

  body .faq-grid details p,
  body .faq-grid .faq-inner-list li{
    font-size:15px!important;
    line-height:1.55!important;
    font-weight:400!important;
  }
}

@media screen and (max-width:430px){

  body .ai-workflow-section .ai-card{
    width:calc(100vw - 44px)!important;
    max-width:calc(100vw - 44px)!important;
  }

  body .faq-grid details{
    padding:15px 16px!important;
    border-radius:20px!important;
  }

  body .faq-grid summary{
    font-size:16px!important;
    line-height:1.25!important;
    font-weight:650!important;
  }

  body .faq-grid details p,
  body .faq-grid .faq-inner-list li{
    font-size:14px!important;
  }
}


/* ========================= */
/* BADGES OUTSIDE CARD FIX   */
/* ========================= */

.section-badge,
.eyebrow,
.badge{
  position:relative!important;
  z-index:5!important;

  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;

  margin-bottom:22px!important;
}

/* Container mit Badge */
.split-section,
.ai-workflow-section,
.features-section,
.faq-section,
.version-section{
  position:relative!important;
}

/* Badge oberhalb der Karte */
.beta-card .section-badge,
.beta-card .eyebrow,
.beta-card .badge,
.glass-card .section-badge,
.glass-card .eyebrow,
.glass-card .badge{
  position:absolute!important;
  top:-26px!important;
  left:38px!important;

  margin:0!important;
}

/* Abstand nach oben für Karten */
.beta-card,
.glass-card{
  margin-top:46px!important;
}

@media(max-width:720px){

  .beta-card .section-badge,
  .beta-card .eyebrow,
  .beta-card .badge,
  .glass-card .section-badge,
  .glass-card .eyebrow,
  .glass-card .badge{
    top:-22px!important;
    left:24px!important;
  }

  .beta-card,
  .glass-card{
    margin-top:40px!important;
  }
}




/* ========================= */
/* CENTERED BADGE CLEANUP    */
/* ========================= */

/* Alle Badges mittig */
.beta-card .section-badge,
.beta-card .eyebrow,
.beta-card .badge,
.glass-card .section-badge,
.glass-card .eyebrow,
.glass-card .badge{
  left:50%!important;
  transform:translateX(-50%)!important;
}

/* Überflüssigen Badge in der Beta-Card ausblenden */
.beta-card .section-badge,
.beta-card .eyebrow{
  display:none!important;
}




/* ========================= */
/* DESKTOP BADGE POSITION FIX */
/* ========================= */

@media screen and (min-width:721px){

  /* Badges komplett aus den Karten heraus */
  .beta-card,
  .glass-card{
    position:relative!important;
    overflow:visible!important;
    margin-top:70px!important;
  }

  .beta-card .section-badge,
  .beta-card .badge,
  .beta-card .eyebrow,
  .glass-card .section-badge,
  .glass-card .badge,
  .glass-card .eyebrow{
    position:absolute!important;
    top:-42px!important;
    left:50%!important;
    transform:translateX(-50%)!important;

    margin:0!important;
    z-index:30!important;
  }

  /* Beta Hinweis komplett entfernen */
  .beta-card .section-badge,
  .beta-card .eyebrow{
    display:none!important;
  }
}




/* ========================= */
/* DESKTOP HERO SPACING FIX  */
/* ========================= */

@media screen and (min-width:721px){

  /* Oberen Leerraum reduzieren */
  .hero-section,
  .hero,
  .hero-wrapper{
    padding-top:40px!important;
    margin-top:0!important;
    min-height:auto!important;
  }

  /* Unteren Abstand reduzieren */
  .hero-section{
    padding-bottom:40px!important;
    margin-bottom:10px!important;
  }

  /* Content enger zusammen */
  .hero-content{
    gap:22px!important;
  }
}




/* ================================ */
/* RESTORE TOP HERO SPACING ONLY    */
/* ================================ */

@media screen and (min-width:721px){

  /* oberen Abstand wiederherstellen */
  .hero-section,
  .hero,
  .hero-wrapper{
    padding-top:110px!important;
    margin-top:0!important;
  }

  /* unteren kompakten Abstand behalten */
  .hero-section{
    padding-bottom:40px!important;
    margin-bottom:10px!important;
  }
}




/* ================================= */
/* CENTER ALL SECTION BADGES DESKTOP */
/* ================================= */

.section-badge,
.badge,
.eyebrow{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;

  width:fit-content!important;

  margin-left:auto!important;
  margin-right:auto!important;
  margin-bottom:22px!important;

  text-align:center!important;
}

/* Sections mittig */
.features-section,
.version-section,
.pricing-section,
.faq-section,
.workflow-section,
.ai-workflow-section{
  text-align:center!important;
}

/* Desktop */
@media screen and (min-width:721px){

  .section-badge,
  .badge,
  .eyebrow{
    margin-bottom:28px!important;
  }
}

/* Mobile */
@media screen and (max-width:720px){

  .section-badge,
  .badge,
  .eyebrow{
    margin-bottom:18px!important;
  }
}




/* ================================= */
/* CENTER SECTION HEADINGS LIKE AI   */
/* ================================= */

.features-section,
.versions-section,
.pricing-section,
.faq-section{
    text-align:center!important;
}

.features-section h2,
.versions-section h2,
.pricing-section h2,
.faq-section h2,
.features-section p,
.versions-section p,
.pricing-section p,
.faq-section p{
    text-align:center!important;
    margin-left:auto!important;
    margin-right:auto!important;
}

.features-section .section-badge,
.versions-section .section-badge,
.pricing-section .section-badge,
.faq-section .section-badge{
    margin-left:auto!important;
    margin-right:auto!important;
}




/* ==================================== */
/* FEATURES SECTION LIKE AI WORKFLOW    */
/* ==================================== */

.features-section{
    text-align:center!important;
}

.features-section .section-header,
.features-section .section-content{
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
}

.features-section h2{
    text-align:center!important;
    margin-left:auto!important;
    margin-right:auto!important;
    max-width:900px!important;
}

.features-section p{
    text-align:center!important;
    margin-left:auto!important;
    margin-right:auto!important;
    max-width:900px!important;
}

.features-section .section-badge{
    margin-left:auto!important;
    margin-right:auto!important;
}




/* ========================================= */
/* TRUE CENTERED STACK LAYOUT LIKE AI BLOCK  */
/* ========================================= */

@media screen and (min-width:721px){

  .features-section .section-container,
  .included-section .section-container,
  .content-section .section-container{
      display:flex!important;
      flex-direction:column!important;
      align-items:center!important;
      justify-content:center!important;
      text-align:center!important;
      width:100%!important;
  }

  .features-section .section-text,
  .included-section .section-text,
  .content-section .section-text{
      width:100%!important;
      max-width:1000px!important;
      margin:0 auto!important;
      text-align:center!important;
  }

  .features-section h2,
  .included-section h2,
  .content-section h2{
      width:100%!important;
      max-width:1000px!important;
      text-align:center!important;
      margin:0 auto 24px auto!important;
  }

  .features-section p,
  .included-section p,
  .content-section p{
      width:100%!important;
      max-width:900px!important;
      text-align:center!important;
      margin:0 auto!important;
  }

  .features-section .section-badge,
  .included-section .section-badge,
  .content-section .section-badge{
      display:flex!important;
      justify-content:center!important;
      margin:0 auto 26px auto!important;
  }
}



/* ===================================== */
/* DESKTOP ONLY - REAL CENTER FIX        */
/* ===================================== */

@media screen and (min-width: 1024px){

  /* Was ist enthalten */
  .included-section,
  .features-section{
      width:100%!important;
  }

  .included-section .container,
  .features-section .container{
      display:flex!important;
      flex-direction:column!important;
      align-items:center!important;
      justify-content:center!important;
      text-align:center!important;
  }

  .included-section .row,
  .features-section .row,
  .included-section .grid,
  .features-section .grid{
      display:flex!important;
      flex-direction:column!important;
      align-items:center!important;
      justify-content:center!important;
      width:100%!important;
  }

  .included-section h2,
  .features-section h2{
      text-align:center!important;
      max-width:950px!important;
      margin:0 auto 24px auto!important;
  }

  .included-section p,
  .features-section p{
      text-align:center!important;
      max-width:950px!important;
      margin:0 auto!important;
  }

  .included-section .section-badge,
  .features-section .section-badge,
  .included-section .badge,
  .features-section .badge{
      margin:0 auto 24px auto!important;
      display:flex!important;
      justify-content:center!important;
      width:fit-content!important;
  }
}




/* ===================================== */
/* DESKTOP PRICE SECTION CENTER FIX      */
/* ===================================== */

@media screen and (min-width: 1024px){

  /* Preise Block exakt wie AI Workflow */
  .pricing-section .container,
  .pricing-section .section-container,
  .pricing-section .section-content{
      display:flex!important;
      flex-direction:column!important;
      align-items:center!important;
      justify-content:center!important;
      text-align:center!important;
      width:100%!important;
  }

  .pricing-section .section-badge,
  .pricing-section .badge{
      margin:0 auto 26px auto!important;
      display:flex!important;
      justify-content:center!important;
      width:fit-content!important;
  }

  .pricing-section h2{
      width:100%!important;
      text-align:center!important;
      margin:0 auto 20px auto!important;
      max-width:1000px!important;
  }

  .pricing-section p{
      width:100%!important;
      text-align:center!important;
      margin:0 auto!important;
      max-width:900px!important;
  }
}



/* ===================================== */
/* REAL DESKTOP SECTION HEAD CENTER FIX  */
/* ===================================== */

@media screen and (min-width:1024px){

  /* Echter Preisbereich: <section id="pricing" class="section-padding pricing"> */
  #pricing.pricing > .section-head,
  section.pricing > .section-head,
  .pricing > .section-head{
    width:100%!important;
    max-width:1000px!important;
    margin:0 auto 48px auto!important;

    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;

    text-align:center!important;
  }

  #pricing.pricing > .section-head .eyebrow,
  section.pricing > .section-head .eyebrow,
  .pricing > .section-head .eyebrow{
    width:fit-content!important;
    margin:0 auto 26px auto!important;
    display:inline-flex!important;
    justify-content:center!important;
    align-items:center!important;
    text-align:center!important;
  }

  #pricing.pricing > .section-head h2,
  section.pricing > .section-head h2,
  .pricing > .section-head h2{
    width:100%!important;
    max-width:1000px!important;
    margin:0 auto!important;
    text-align:center!important;
  }

  /* Auch echte Feature-/Was-ist-enthalten-Struktur */
  .cards-section > .section-head{
    width:100%!important;
    max-width:1000px!important;
    margin:0 auto 48px auto!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    text-align:center!important;
  }

  .cards-section > .section-head .eyebrow,
  .cards-section > .section-head .badge{
    width:fit-content!important;
    margin:0 auto 26px auto!important;
  }

  .cards-section > .section-head h2,
  .cards-section > .section-head p{
    text-align:center!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  .split-section{
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
  }

  .split-section > div,
  .split-section > p{
    width:100%!important;
    max-width:1000px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    text-align:center!important;
  }

  .split-section .eyebrow{
    width:fit-content!important;
    margin:0 auto 26px auto!important;
  }

  .split-section h2,
  .split-section p{
    text-align:center!important;
  }
}



/* =========================================== */
/* DESKTOP REAL SECTION HEADS CENTERED FINAL   */
/* =========================================== */

@media screen and (min-width:1024px){

  /* Features */
  #features.cards-section > .section-head,
  section#features > .section-head,

  /* Versionen */
  #versions.versions > .section-head,
  section#versions > .section-head,

  /* Preise */
  #pricing.pricing > .section-head,
  section#pricing > .section-head,

  /* FAQ */
  #faq.faq > .section-head,
  section#faq > .section-head{
    width:100%!important;
    max-width:1000px!important;
    margin:0 auto 48px auto!important;

    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;

    text-align:center!important;
  }

  #features.cards-section > .section-head .eyebrow,
  section#features > .section-head .eyebrow,
  #versions.versions > .section-head .eyebrow,
  section#versions > .section-head .eyebrow,
  #pricing.pricing > .section-head .eyebrow,
  section#pricing > .section-head .eyebrow,
  #faq.faq > .section-head .eyebrow,
  section#faq > .section-head .eyebrow,

  #features.cards-section > .section-head .badge,
  section#features > .section-head .badge,
  #versions.versions > .section-head .badge,
  section#versions > .section-head .badge,
  #pricing.pricing > .section-head .badge,
  section#pricing > .section-head .badge,
  #faq.faq > .section-head .badge,
  section#faq > .section-head .badge{
    width:fit-content!important;
    margin:0 auto 26px auto!important;
    display:inline-flex!important;
    justify-content:center!important;
    align-items:center!important;
    text-align:center!important;
  }

  #features.cards-section > .section-head h2,
  section#features > .section-head h2,
  #versions.versions > .section-head h2,
  section#versions > .section-head h2,
  #pricing.pricing > .section-head h2,
  section#pricing > .section-head h2,
  #faq.faq > .section-head h2,
  section#faq > .section-head h2{
    width:100%!important;
    max-width:1000px!important;
    margin:0 auto 18px auto!important;
    text-align:center!important;
  }

  #features.cards-section > .section-head p,
  section#features > .section-head p,
  #versions.versions > .section-head p,
  section#versions > .section-head p,
  #pricing.pricing > .section-head p,
  section#pricing > .section-head p,
  #faq.faq > .section-head p,
  section#faq > .section-head p{
    width:100%!important;
    max-width:900px!important;
    margin:0 auto!important;
    text-align:center!important;
  }
}



/* ================================= */
/* FINAL DESKTOP SPACING + CTA FIX   */
/* ================================= */

@media screen and (min-width:1024px){

  /* Abstand zwischen "Was ist enthalten?" und Features reduzieren */
  #features{
    padding-top: 80px !important;
    margin-top: -30px !important;
  }

  /* CTA Badge aus Kachel holen */
  .cta-section .eyebrow,
  .cta .eyebrow,
  .contact-section .eyebrow{
    position:absolute !important;
    top:-26px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    z-index:5 !important;
  }

  .cta-section,
  .cta,
  .contact-section{
    position:relative !important;
    overflow:visible !important;
    padding-top:80px !important;
  }
}



/* ================================= */
/* HERO BADGE LINKS AUSRICHTEN       */
/* ================================= */

@media screen and (min-width:1024px){

  .hero .eyebrow,
  .hero-badge,
  .hero .badge{
    left:0 !important;
    transform:none !important;
    margin-left:0 !important;
    text-align:left !important;
    justify-content:flex-start !important;
  }
}


/* ================================= */

.request-system-section{
  position:relative;
  padding:120px 24px;
}

.request-system-container{
  max-width:1400px;
  margin:0 auto;
  text-align:center;
}

.request-title{
  font-size:clamp(42px,5vw,78px);
  line-height:1.05;
  font-weight:800;
  margin-top:28px;
  margin-bottom:24px;
  color:#eef3ff;
}

.request-description{
  max-width:980px;
  margin:0 auto 70px auto;
  color:#b8bfd2;
  font-size:1.18rem;
  line-height:1.8;
}

.request-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.request-card{
  background:linear-gradient(135deg, rgba(40,50,70,.72), rgba(18,20,33,.82));
  border:1px solid rgba(125,145,255,.16);
  border-radius:34px;
  padding:42px;
  text-align:left;
  backdrop-filter:blur(18px);
}

.request-icon{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  border-radius:24px;
  background:rgba(98,130,255,.12);
  margin-bottom:26px;
}

.request-card h3{
  font-size:2rem;
  margin-bottom:16px;
  color:#eef3ff;
}

.request-card p{
  color:#b8bfd2;
  line-height:1.8;
  margin-bottom:26px;
}

.reelflow-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.reelflow-form input,
.reelflow-form select,
.reelflow-form textarea{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px 18px;
  color:#eef3ff;
  font-size:1rem;
}

.reelflow-form textarea{
  min-height:130px;
  resize:vertical;
}

.reelflow-form button{
  margin-top:6px;
  border:none;
  border-radius:18px;
  padding:18px;
  cursor:pointer;
  color:#07111f;
  font-weight:800;
  background:linear-gradient(90deg,#5fdcff,#9f6cff);
}

.download-preview{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.download-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.download-item span{
  color:#eef3ff;
  font-weight:700;
}

.download-item button{
  border:none;
  border-radius:14px;
  padding:12px 16px;
  background:rgba(255,255,255,.08);
  color:#9aa4bd;
}

.request-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.request-list li{
  color:#d6def4;
  font-size:1.05rem;
}

@media screen and (max-width:1024px){

  .request-system-section{
    padding:90px 20px;
  }

  .request-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .request-card{
    padding:32px 26px;
    border-radius:28px;
  }

  .request-card h3{
    font-size:1.8rem;
  }

  .request-description{
    font-size:1.05rem;
    line-height:1.95;
    margin-bottom:50px;
  }

  .download-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .download-item button{
    width:100%;
  }
}


/* ================================= */
/* DESKTOP SECTION SPACING FIX */
/* ================================= */

@media (min-width: 1024px) {

  .workflow-intro,
  .features-intro,
  .pricing-intro,
  .faq-intro {
    margin-bottom: 70px !important;
  }

  .workflow-intro p,
  .features-intro p,
  .pricing-intro p,
  .faq-intro p {
    margin-bottom: 22px !important;
  }

  .workflow-section,
  .features-section,
  .pricing-section,
  .faq-section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

}



/* ================================= */
/* DESKTOP BADGE SPACING FIX */
/* ================================= */

@media (min-width: 1024px) {

  .features-section,
  .pricing-section,
  .faq-section,
  .workflow-section {
    padding-top: 55px !important;
  }

  .section-badge,
  .features-badge,
  .pricing-badge,
  .faq-badge,
  .workflow-badge {
    margin-bottom: 18px !important;
  }

}



/* ===================================================== */
/* FINAL VERIFIED DESKTOP SECTION GAP FIX                */
/* greift auf echte HTML-Struktur:                       */
/* #versions.section-padding.versions                    */
/* #pricing.section-padding.pricing                      */
/* #workflow.section.ai-workflow-section                 */
/* #faq.section-padding.faq                              */
/* ===================================================== */

@media screen and (min-width:1024px){

  /* Globale Section-Paddings auf Desktop kontrollieren */
  section.section-padding{
    padding-top:72px!important;
    padding-bottom:72px!important;
  }

  /* Versionen -> Preise: blauen Abstand massiv reduzieren */
  section#versions.section-padding.versions{
    padding-bottom:34px!important;
    margin-bottom:0!important;
  }

  section#pricing.section-padding.pricing{
    padding-top:34px!important;
    margin-top:0!important;
  }

  /* Preise -> AI Workflow: roten Abstand als Zielabstand */
  section#pricing.section-padding.pricing{
    padding-bottom:34px!important;
    margin-bottom:0!important;
  }

  section#workflow.ai-workflow-section,
  section#workflow.section.ai-workflow-section{
    padding-top:34px!important;
    margin-top:0!important;
  }

  /* AI Workflow -> FAQ ebenfalls angleichen */
  section#workflow.ai-workflow-section,
  section#workflow.section.ai-workflow-section{
    padding-bottom:34px!important;
    margin-bottom:0!important;
  }

  section#faq.section-padding.faq{
    padding-top:34px!important;
    margin-top:0!important;
  }

  /* Features Bereich harmonisch halten */
  section#features.section-padding.cards-section{
    padding-top:50px!important;
    padding-bottom:50px!important;
  }

  /* Header innerhalb der Sections nicht unnötig aufblasen */
  section#pricing > .section-head,
  section#features > .section-head,
  section#versions > .section-head,
  section#faq > .section-head,
  section#workflow > .section-head{
    margin-bottom:34px!important;
  }

  /* Badges kompakt unter vorherigem Bereich */
  section#pricing .eyebrow,
  section#features .eyebrow,
  section#versions .eyebrow,
  section#faq .eyebrow,
  section#workflow .badge{
    margin-bottom:18px!important;
  }
}



/* ===================================================== */
/* FINAL VERIFIED SPLIT SECTION TEXT GAP FIX             */
/* Bereich: Was ist enthalten?                           */
/* ===================================================== */

@media screen and (min-width:1024px){

  section.section-padding.split-section{
    gap:22px!important;
    row-gap:22px!important;
    padding-top:60px!important;
    padding-bottom:44px!important;
  }

  section.section-padding.split-section > div{
    margin-bottom:0!important;
  }

  section.section-padding.split-section h2{
    margin:0 auto 18px auto!important;
    line-height:1.05!important;
  }

  section.section-padding.split-section > p,
  section.section-padding.split-section .section-text{
    margin:0 auto!important;
    padding-top:0!important;
    max-width:980px!important;
    line-height:1.55!important;
  }
}


/* ================================= */

.updates-btn{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.22);
  background:rgba(93,220,255,.08);
}

.updates-section{
  position:relative;
}

.updates-timeline{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.update-card{
  overflow-wrap:anywhere;

  padding:30px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(30,35,48,.82), rgba(12,15,24,.92));
  border:1px solid rgba(93,220,255,.12);
}

.update-card.current{
  border-color:rgba(93,220,255,.35);
}

.update-date{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(93,220,255,.08);
  border:1px solid rgba(93,220,255,.18);
  color:#5fdcff;
  font-weight:700;
}

.update-card ul{
  margin:0;
  padding-left:18px;
}

.update-card li{
  color:#d8e1f2;
  line-height:1.8;
  margin-bottom:8px;
}

@media(max-width:1024px){

  .updates-timeline{
    grid-template-columns:1fr;
  }

  .update-card{
  overflow-wrap:anywhere;

    padding:24px;
  }
}


/* ================================= */
/* UPDATES POPUP MODAL               */
/* ================================= */

.updates-btn{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(93,220,255,.22);
  background:rgba(93,220,255,.08);
}

.updates-modal-box{
  width:min(1520px,96vw);
  max-height:88vh;
  overflow-y:auto;
  overflow-x:hidden;
  padding-right:10px;
}

.popup-updates{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin-top:28px;
}

.update-card{
  overflow-wrap:anywhere;

  padding:30px;
  min-height:100%;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(30,35,48,.82), rgba(12,15,24,.92));
  border:1px solid rgba(93,220,255,.12);
  text-align:left;
}

.update-card.current{
  border-color:rgba(93,220,255,.35);
}

.update-date{
  display:inline-flex;
  margin-bottom:16px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(93,220,255,.08);
  border:1px solid rgba(93,220,255,.18);
  color:#5fdcff;
  font-weight:700;
}

.update-card ul{
  margin:0;
  padding-left:18px;
}

.update-card li{
  color:#d8e1f2;
  line-height:1.95;
  margin-bottom:7px;
}

@media(max-width:900px){
  .popup-updates{
    grid-template-columns:1fr;
  }

  .updates-modal-box{
    max-height:86vh;
  }

  .update-card{
  overflow-wrap:anywhere;

    padding:20px;
  }
}


@media(max-width:1200px){
  .popup-updates{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


.updates-modal-box h2{
  max-width:1100px;
  margin-bottom:24px;
}

.updates-modal-box p{
  max-width:1100px;
  line-height:1.8;
}

.popup-updates{
  align-items:start;
}

.popup-updates .update-card{
  overflow-wrap:anywhere;

  backdrop-filter:blur(12px);
}

@media(max-width:1600px){
  .updates-modal-box{
    width:min(1400px,96vw);
  }
}

@media(max-width:1280px){
  .popup-updates{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:820px){
  .popup-updates{
    grid-template-columns:1fr;
  }

  .updates-modal-box{
    width:min(96vw,100%);
  }
}



/* ===================================================== */
/* FINAL POPUP WIDTH + DOWNLOAD CLEAN FIX                */
/* ===================================================== */

/* Updates-Popup breit, sauber und ohne horizontale Scrollbar */
#updates-modal.legal-modal{
  padding:24px!important;
}

#updates-modal .legal-modal-box,
#updates-modal .updates-modal-box{
  width:min(1780px,96vw)!important;
  max-width:96vw!important;
  max-height:88vh!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  box-sizing:border-box!important;
  padding:44px 48px!important;
}

#updates-modal .popup-updates{
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:28px!important;
  align-items:start!important;
}

#updates-modal .update-card{
  min-width:0!important;
  width:100%!important;
  box-sizing:border-box!important;
  overflow-wrap:break-word!important;
  word-break:normal!important;
  padding:28px!important;
}

#updates-modal .update-card li{
  line-height:1.75!important;
}

/* Download-Popup: nur zwei Karten, sauberer Abstand und sichtbarer Bindestrich */
#download-modal .popup-download-grid,
#download-modal .popup-download-grid.two-downloads,
#download-modal .popup-download-grid.three-downloads{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(280px,1fr))!important;
  gap:32px!important;
  max-width:760px!important;
  align-items:stretch!important;
  position:relative!important;
}

#download-modal .popup-download-grid::after{
  content:"–";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  color:rgba(93,220,255,.95);
  font-size:34px;
  font-weight:800;
  line-height:1;
  pointer-events:none;
  text-shadow:0 0 18px rgba(93,220,255,.35);
}

#download-modal .popup-download-card{
  min-width:0!important;
}

#download-modal .download-step-note{
  margin-top:26px!important;
  margin-bottom:20px!important;
}

#download-modal .download-dash{
  color:#5fdcff;
  font-weight:900;
  padding:0 8px;
}

@media(max-width:1400px){
  #updates-modal .legal-modal-box,
  #updates-modal .updates-modal-box{
    width:min(1500px,96vw)!important;
  }

  #updates-modal .popup-updates{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:22px!important;
  }

  #updates-modal .update-card{
    padding:24px!important;
  }
}

@media(max-width:1050px){
  #updates-modal .popup-updates{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

@media(max-width:760px){
  #updates-modal .popup-updates{
    grid-template-columns:1fr!important;
  }

  #updates-modal .legal-modal-box,
  #updates-modal .updates-modal-box{
    padding:28px 22px!important;
  }

  #download-modal .popup-download-grid,
  #download-modal .popup-download-grid.two-downloads,
  #download-modal .popup-download-grid.three-downloads{
    grid-template-columns:1fr!important;
    max-width:100%!important;
    gap:18px!important;
  }

  #download-modal .popup-download-grid::after{
    display:none!important;
  }
}




/* ========================================= */
/* DOWNLOAD POPUP PERFECT CENTER ALIGN FIX   */
/* ========================================= */

#download-modal .legal-modal-box{
  width:min(1180px,94vw)!important;
  margin:0 auto!important;
  box-sizing:border-box!important;
}

#download-modal .popup-download-grid,
#download-modal .popup-download-grid.two-downloads{
  width:100%!important;
  max-width:920px!important;
  margin:34px auto 0 auto!important;
  padding:0!important;

  display:grid!important;
  grid-template-columns:repeat(2,minmax(320px,420px))!important;
  justify-content:center!important;
  align-items:stretch!important;
  column-gap:42px!important;
  row-gap:24px!important;

  position:relative!important;
  box-sizing:border-box!important;
}

#download-modal .popup-download-grid::after{
  content:"–"!important;
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  transform:translate(-50%,-50%)!important;

  color:#5fdcff!important;
  font-size:42px!important;
  font-weight:900!important;
  line-height:1!important;

  text-shadow:0 0 16px rgba(93,220,255,.35)!important;
  pointer-events:none!important;
}

#download-modal .popup-download-card{
  width:100%!important;
  max-width:420px!important;
  margin:0 auto!important;
  box-sizing:border-box!important;
}

#download-modal .download-hint{
  display:block!important;
  width:100%!important;
  text-align:center!important;
  margin-top:20px!important;
}

@media(max-width:860px){

  #download-modal .popup-download-grid,
  #download-modal .popup-download-grid.two-downloads{
    grid-template-columns:1fr!important;
    max-width:100%!important;
    justify-content:center!important;
  }

  #download-modal .popup-download-grid::after{
    display:none!important;
  }

  #download-modal .popup-download-card{
    max-width:100%!important;
  }
}




/* ===================================== */
/* RESTORE PRIVATE DEMO CARD             */
/* ===================================== */

#download-modal .popup-download-grid.three-downloads{
  grid-template-columns:repeat(3,minmax(260px,1fr))!important;
  max-width:1320px!important;
  column-gap:26px!important;
}

#download-modal .popup-download-grid.three-downloads::after{
  display:none!important;
}

@media(max-width:980px){
  #download-modal .popup-download-grid.three-downloads{
    grid-template-columns:1fr!important;
    max-width:100%!important;
  }
}


/* RESTORED PRIVATE DEMO */
#download-modal .popup-download-grid.three-downloads{
 display:grid!important;
 grid-template-columns:repeat(3,minmax(260px,1fr))!important;
 gap:24px!important;
 max-width:1320px!important;
 margin:34px auto 0 auto!important;
}

#download-modal .popup-download-grid.three-downloads::after{
 display:none!important;
}

@media(max-width:980px){
 #download-modal .popup-download-grid.three-downloads{
   grid-template-columns:1fr!important;
 }
}




/* ========================================= */
/* DOWNLOAD POPUP CARD BUTTON ALIGN FINAL    */
/* ========================================= */

#download-modal .popup-download-grid.three-downloads{
  align-items:stretch!important;
}

#download-modal .popup-download-card{
  display:flex!important;
  flex-direction:column!important;
  min-height:360px!important;
  box-sizing:border-box!important;
}

#download-modal .popup-download-card p{
  flex:1 1 auto!important;
  margin-bottom:22px!important;
}

#download-modal .popup-download-card .btn{
  margin-top:auto!important;
  width:100%!important;
  min-height:54px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  border-radius:999px!important;
}

/* Privat Demo Button soll optisch gleich wie Anleitung und Pro Demo sein */
#download-modal .popup-download-card a[href*="Strohhut3DDruck_Privat_Demo_Setup.exe"]{
  background:linear-gradient(90deg,#5fdcff,#8b5cf6)!important;
  color:#07111f!important;
  border:0!important;
  font-weight:800!important;
  box-shadow:none!important;
}

@media(max-width:980px){
  #download-modal .popup-download-card{
    min-height:auto!important;
  }
}




/* ========================================= */
/* DIGITAL PRODUCT NOTICE                    */
/* ========================================= */

.digital-notice-box{
  margin:26px auto 10px auto;
  padding:18px 22px;
  border-radius:22px;
  border:1px solid rgba(93,220,255,.18);
  background:rgba(93,220,255,.05);
  max-width:980px;
}

.digital-checkbox{
  display:flex;
  align-items:flex-start;
  gap:16px;
  cursor:pointer;
}

.digital-checkbox input{
  display:none;
}

.digital-checkbox .checkmark{
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:8px;
  border:2px solid rgba(93,220,255,.45);
  background:rgba(255,255,255,.03);
  position:relative;
  margin-top:2px;
  transition:all .25s ease;
}

.digital-checkbox input:checked + .checkmark{
  background:linear-gradient(135deg,#5fdcff,#8b5cf6);
  border-color:transparent;
}

.digital-checkbox input:checked + .checkmark::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#07111f;
  font-weight:900;
  font-size:15px;
}

.digital-text{
  color:#dce6f6;
  line-height:1.7;
  font-size:.96rem;
}

@media(max-width:760px){
  .digital-notice-box{
    padding:16px;
  }

  .digital-checkbox{
    gap:12px;
  }

  .digital-text{
    font-size:.92rem;
    line-height:1.65;
  }
}




/* ========================================= */
/* DIGITAL PRODUCT CHECKBOX FINAL            */
/* ========================================= */

.digital-notice-box{
  margin:28px auto 8px auto;
  padding:20px 22px;
  border-radius:24px;
  border:1px solid rgba(93,220,255,.18);
  background:rgba(93,220,255,.05);
  max-width:980px;
}

.digital-checkbox{
  display:flex;
  align-items:flex-start;
  gap:16px;
  cursor:pointer;
}

.digital-checkbox input{
  display:none;
}

.digital-checkbox .checkmark{
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:8px;
  border:2px solid rgba(93,220,255,.45);
  background:rgba(255,255,255,.03);
  position:relative;
  margin-top:2px;
  transition:all .25s ease;
}

.digital-checkbox input:checked + .checkmark{
  background:linear-gradient(135deg,#5fdcff,#8b5cf6);
  border-color:transparent;
}

.digital-checkbox input:checked + .checkmark::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#07111f;
  font-weight:900;
  font-size:15px;
}

.digital-text{
  color:#dce6f6;
  line-height:1.7;
  font-size:.96rem;
}

@media(max-width:760px){

  .digital-notice-box{
    padding:16px;
  }

  .digital-checkbox{
    gap:12px;
  }

  .digital-text{
    font-size:.92rem;
    line-height:1.65;
  }
}



/* LOGIN / DOWNLOAD LOG NOTICE */
.download-account-note{
  margin:22px auto 10px;
  max-width:980px;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid rgba(93,220,255,.18);
  background:rgba(93,220,255,.055);
  color:#dce6f6;
  line-height:1.65;
}

.nav .nav-link-button[href="/auth/login.php"]{
  text-decoration:none;
}




/* LOGIN MODAL FIX */

.auth-modal-box{
  width:min(560px,94vw)!important;
  max-width:94vw!important;
}

.auth-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:28px;
}

.auth-info-text{
  line-height:1.8;
  color:#dce6f6;
}

@media(max-width:760px){
  .auth-grid{
    grid-template-columns:1fr;
  }
}




/* LOGIN MODAL ACTIVE FIX */

.legal-modal{
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.legal-modal.active{
  opacity:1;
  pointer-events:auto;
}



/* LOGIN / REGISTER FORMS MODAL FINAL */
.auth-forms-box{
  width:min(980px,94vw)!important;
}

.auth-forms-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-top:28px;
}

.auth-form-card{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(93,220,255,.16);
  background:rgba(255,255,255,.045);
}

.auth-form-card h3{
  margin:0 0 8px;
  font-size:26px;
  color:#eef3ff;
}

.auth-form-card p{
  margin:0 0 18px;
  color:#b8bfd2;
}

.auth-form-card label{
  display:grid;
  gap:8px;
  margin-bottom:14px;
  color:#dce6f6;
  font-weight:700;
}

.auth-form-card input{
  width:100%;
  box-sizing:border-box;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
  color:#eef3ff;
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
}

@media(max-width:820px){
  .auth-forms-grid{
    grid-template-columns:1fr;
  }

  .auth-forms-box{
    width:min(94vw,100%)!important;
  }
}





/* NAV USER / LOGOUT */
.nav-user{
  color:#dce6f6;
  font-weight:700;
  opacity:.9;
}
.logout-link{
  color:#5fdcff!important;
}



/* HEADER USER POSITION FIX */
.header-user{
  margin-left:34px;
  color:#dce6f6;
  font-weight:800;
  font-size:15px;
  white-space:nowrap;
  opacity:.95;
}

.site-header{
  display:flex;
  align-items:center;
}

.site-header .nav{
  margin-left:auto;
}

@media(max-width:900px){
  .header-user{
    display:none;
  }
}



/* MOBILE DESKTOP APP NOTICE */
#mobile-desktop-notice-modal .auth-modal-box{
  width:min(520px,92vw)!important;
  text-align:left;
}
#mobile-desktop-notice-modal p{
  line-height:1.75;
}



/* MOBILE DESKTOP APP NOTICE FINAL */
#mobile-desktop-notice-modal .auth-modal-box{
  width:min(540px,92vw)!important;
  text-align:left;
}
#mobile-desktop-notice-modal p{
  line-height:1.75;
}



/* PASSWORD RESET LINK */
.auth-forgot-link{
  display:block;
  margin-top:14px;
  color:#5fdcff;
  font-weight:800;
  text-decoration:none;
}
.auth-forgot-link:hover{
  text-decoration:underline;
}



/* DOWNLOAD LOCKED STATE ALIGNMENT */
#download-modal .popup-download-card.locked,
#download-modal .popup-download-card.guide-pending{
  opacity:.68!important;
}

#download-modal .popup-download-card.guide-pending .btn{
  opacity:.92!important;
}

#download-modal .popup-download-card.locked .btn.disabled-download{
  pointer-events:none!important;
  opacity:.55!important;
  cursor:not-allowed!important;
}



/* ADMIN DASHBOARD NAV LINK */
.admin-dashboard-link{
  color:#5fdcff!important;
}



/* LOGIN ERROR INFO */
.login-error-info{
  margin:12px 0 0;
  color:#ffb4b4;
  font-size:13px;
  line-height:1.5;
}



/* TICKET NAV BADGE FIX */
.ticket-nav-link{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  white-space:nowrap!important;
}

.nav-ticket-badge{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:22px!important;
  width:22px!important;
  height:22px!important;
  padding:0!important;
  margin-left:2px!important;
  border-radius:999px!important;
  background:#ff4d5f!important;
  color:#fff!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:900!important;
  box-shadow:0 0 14px rgba(255,77,95,.55)!important;
}
