/* Reset und grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
 
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --sidebar-bg: #111827;
    --sidebar-hover: #1f2937;
    --text-light: #d1d5db;
    --text-dark: #f9fafb;
    --white: #ffffff;
    --body-bg: #111827;
    --card-bg: #1f2937;
    --nav-bg: #1f2937;
    --border-color: #4b5563;
    --input-bg: #2a3441;
    --input-text: #f9fafb;
    --input-placeholder: #d1d5db;
    --dropdown-bg: #2a3441;
    --dropdown-hover: #374151;
    --error-bg: #991b1b;
    --success-bg: #065f46;
}

/* Typografie */
body {
    font-family: 'Geist', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--body-bg);
    font-size: 16px;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%23FFFFFF" stroke="%236366f1" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Container und Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

header {
    padding: 0!important;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    section {
        padding: 1rem 0;
    }
}

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

/* Navigation Grundlayout */
.navbar {
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
  box-shadow: none;
  color: #fff;
  width: 100%;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  z-index: 100;

}

.navbar.scrolled {
  background: #1f2937;
  box-shadow: 0 10px 12px rgba(229, 229, 229, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
}

.logo img {
  height: 25px;
}

header {
    min-height: 50vh;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 0;
  transition: color 0.2s;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%23FFFFFF" stroke="%236366f1" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.nav-link:hover {
  color: var(--primary);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="none" stroke="%236366f1" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/><path fill="%23FFFFFF" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background: var(--card-bg);
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 10;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: #333;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  margin-right: 8px;
  transition: color 0.2s;
}

.nav-login:hover {
  color: #e2e2e2;
}

.nav-btn {
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
}

.nav-btn:hover {
  background: var(--primary-hover);
  color: var(--white);
}

.nav-burger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Optional: Mobile Menü (wenn du es mit JS öffnest) */
.nav-menu.active,
.nav-actions.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  z-index: 100;
  padding: 16px 0;
  gap: 0;
}

.nav-menu.active .nav-item,
.nav-actions.active a {
  padding: 12px 24px;
  width: 100%;
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (max-width: 700px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
} 

/* Responsive Styles */
@media (max-width: 900px) {
    .nav-menu {
      gap: 12px;
    }
    .nav-container {
      padding: 0 12px;
    }
  }

  @media (max-width: 700px) {
    .nav-menu,
    .nav-actions {
      display: none;
    }
    .nav-burger {
      display: block;
    }
    .nav-container {
      height: 56px;
    }
    .nav-menu.active {
      padding: 32px 0 32px 0;
    }
    .nav-menu.active .nav-item {
      padding-left: 24px;
      padding-right: 24px;
    }
    .nav-menu.active .nav-item.mobile-only {
      margin-top: 16px;
    }
  }

/* Sichtbarkeit für Desktop und Mobile Navigation */
.nav-actions.desktop-only { display: flex; }
.nav-item.mobile-only { display: none; }

@media (max-width: 700px) {
  .nav-actions.desktop-only { display: none !important; }
  .nav-item.mobile-only { display: block !important; }
}

@media (min-width: 701px) {
  .nav-menu.active {
    display: flex !important;
    position: static;
    flex-direction: row;
    height: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
  }
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:6rem;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    padding: 0rem 0!important;
}

.hero-content {
    width: 50%;
    height: 90vh;
    z-index: 2;
    h1 {
        font-size: 4rem;
    }
    p {
        font-size: 1.25rem;
    }
}

.hero-text-wrapper {
    position: relative;
}

.hero-image {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 500000;
    width: 50%;
    height: auto;

}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    border-radius: 18px 0px 0px 18px;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 0 25px 0 rgba(253, 253, 253, 0.182);
    overflow: hidden;
    opacity: 0.7;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    outline: none;
    display: inline-block;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%23FFFFFF" stroke="%236366f1" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}
  
.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--white);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="none" stroke="%236366f1" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/><path fill="%23FFFFFF" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.input-primary {
    background: var(--input-bg);
    color: var(--input-text);
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-color);
    outline: none;
    display: inline-block;
    
}

.form-inline {
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border-radius: 28px;
    padding: 4px 8px 4px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    width: 100%;
    margin: 0 auto 1.5rem auto;
    border: 1px solid var(--border-color);
    &:hover {
        background: var(--input-bg);
        border: 1px solid var(--primary);
        box-shadow: 0 0 20px 0 rgba(253, 253, 253, 0.182);
    }

}

.form-inline .input-primary {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    flex: 1;
    padding: 12px 10px;
    border-radius: 28px;
    box-shadow: none;
}

.form-inline .input-primary::placeholder {
    color: #aaa;
    opacity: 1;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -1rem;
}

.form-inline .btn-primary {
    background: #fff;
    color: #232323;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    margin-left: 12px;
    padding: 10px 22px;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}

.form-inline .btn-primary:hover {
    background: #e2e2e2;
    color: #232323;
}

/* Button Text für mobile Geräte */
@media (max-width: 480px) {
    .form-inline .btn-primary {
        padding: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-inline .btn-primary span {
        display: none;
    }

    .form-inline .btn-primary i {
        margin: 0;
        font-size: 20px;
    }
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

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

.w-50 {
    width: 50%;
}

.grid-3-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px 0 rgba(253, 253, 253, 0.182);
    text-align: center;
    &:hover {
        background: var(--card-bg);
        border: 1px solid var(--primary);
        box-shadow: 0 0 20px 0 rgba(253, 253, 253, 0.182);
    }
}

.feature-item-icon {
    font-size: 3rem;
}

.first-icon {
    color: var(--primary);
}

.second-icon {
    color: var(--primary);
}

.third-icon {
    color: var(--primary);
}

.hero-badge {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--white);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    margin-bottom: 1rem;
}

.light-font {
    color: var(--text-light);
    font-weight: 400;
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.default-img-style {
    border-radius: 18px;
    object-fit: contain;
    object-position: center;
}

.img-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    padding: 1rem;
}

.plan-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.plan-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 0 20px 0 rgba(253, 253, 253, 0.182);
    width: 400px;
    &:hover {
        background: var(--card-bg);
        border: 1px solid var(--primary);
        box-shadow: 0 0 20px 0 rgba(253, 253, 253, 0.182);
    }

    h3 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }
}

.plan-item-icon {
    font-size: 4rem;
    color: var(--primary);
}

.plan-item-price {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.plan-item-price .price-value {
    font-size: 3rem;
    font-weight: 700;
}

.plan-item-price .price-currency {
    font-size: 1rem;
    font-weight: 500;
}

.plan-item-price .price-duration {
    font-size: 1rem;
    font-weight: 500;
}

.plan-item li {
    list-style: none;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;

    i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        color: var(--primary);
        flex-shrink: 0;
    }

    
}

hr {
    border: 1px solid var(--border-color);
    margin: 1rem 0;
    border-radius: 100px;
}

.big-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fade-text {
    background: linear-gradient(to right, var(--primary), rgb(151, 122, 255), rgb(103, 78, 167));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: fade 2s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes fade {
    to {
        background-position: 200% center;
    }
}


.fade-text-2 {
    background: linear-gradient(to right, var(--primary), rgb(122, 142, 255), rgb(149, 78, 167));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: fade 2s ease-in-out infinite;
    background-size: 200% auto;
}

.footer {
    background: #1f2937da;
    padding: 2rem 0 1rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.7;
}

.beauty-href {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.beauty-href:hover {
    color: var(--primary-hover);
}

.nav-link, a, .btn-primary, button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%236366f1" stroke="%23FFFFFF" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.nav-link:hover, a:hover, .btn-primary:hover, button:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%236366f1" stroke="%23FFFFFF" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.nav-link:active, a:active, .btn-primary:active, button:active {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="%236366f1" stroke="%23FFFFFF" stroke-width="2" d="M4.5.79v22.42l6.56-6.57h9.29L4.5.79z"/></svg>') 0 0, auto;
}

.line-color {
    background: rgba(222, 222, 222, 0.043);
    z-index: -1000;
}

.line-1 {
    position: fixed;
    top: 0;
    left: 20%;
    width: 1px;
    height: 100vh;
}

.line-2 {
    position: fixed;
    top: 0;
    left: 40%;
    width: 1px;
    height: 100vh;
}

.line-3 {
    position: fixed;
    top: 0;
    left: 60%;
    width: 1px;
    height: 100vh;
}

.line-4 {
    position: fixed;
    top: 0;
    left: 80%;
    width: 1px;
    height: 100vh;
}

.line-5 {
    position: fixed;
    top: 30%;
    left: 0;
    width: 100vw;
    height: 1px;
}

.line-6 {
    position: fixed;
    top: 70%;
    left: 0;
    width: 100vw;
    height: 1px;
}

.fw {
    width: 100%;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px var(--primary);
    z-index: 10;
    opacity: 0.2;
}

.line-1 .dot-1 {
    left: -5px;
    animation: move-dot-vertical-1 20s linear infinite;
}
.line-2 .dot-2 {
    left: -5px;
    animation: move-dot-vertical-2 23s linear infinite 0.5s;
}
.line-3 .dot-3 {
    left: -5px;
    animation: move-dot-vertical-3 25s linear infinite 1s;
}
.line-4 .dot-4 {
    left: -5px;
    animation: move-dot-vertical-4 28s linear infinite 1.5s;
}

@keyframes move-dot-vertical-1 {
    0% { top: 0; }
    100% { top: 100vh; }
}
@keyframes move-dot-vertical-2 {
    0% { top: 0; }
    100% { top: 100vh; }
}
@keyframes move-dot-vertical-3 {
    0% { top: 0; }
    100% { top: 100vh; }
}
@keyframes move-dot-vertical-4 {
    0% { top: 0; }
    100% { top: 100vh; }
}

.line-5 .dot-5 {
    top: -5px;
    left: 0;
    animation: move-dot-horizontal-5 29s linear infinite;
}
.line-6 .dot-6 {
    top: -5px;
    left: 0;
    animation: move-dot-horizontal-6 28s linear infinite 1s;
}
@keyframes move-dot-horizontal-5 {
    0% { left: 0; }
    100% { left: 100vw; }
}
@keyframes move-dot-horizontal-6 {
    0% { left: 0; }
    100% { left: 100vw; }
}

@media (max-width: 900px) {

    body {
        width: 100vw;
        overflow-x: hidden;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }


    .hero {
        height: 100%;
        padding-top: 10rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-2-1 {
        grid-template-columns: 1fr;
        gap: 2rem!important;
    }

    .grid-3-1 {
        display: block
    }

    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: none;
    }

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

    .hero-badge-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .w-50 {
        width: 100%;
    }

    .form-inline {
        width: 100%;
    }

    .grid-3-1 {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: center;
    }

    .benefit-first  {
        text-align: center;
    }

    .benefit-second {
        display: grid;
        grid-template-areas: "text img";
        text-align: center;
        margin-top:2rem;
    }

    .benefit-third {
        text-align: center;
        margin-top:2rem;
        
    }

    .benefit-third .grid-item .default-img-style {
        margin-top: 3rem;
    }

    .benefit-second .grid-item:first-child {
        grid-area: img;
    }

    .benefit-second .grid-item:last-child {
        grid-area: text;
    }

    .plan-wrapper {
        padding: 1rem;
    }

    .plan-item {
        max-width: 380px;
        padding: 1rem;
    }

    .hero-image-mobile {
        display: block;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 18px;
        }
    }
    
    .hero-content {
        width: 100%;
        padding: 0 1rem;
    }

    .feature-item {
        margin-top: 2rem;
    }

    @media (max-width: 850px) {
        .benefit-second {
            grid-template-areas: 
                "text"
                "img";
        }
    }
}

@media screen and (max-width: 800px) {
    .hero {
        margin-top: 5rem;
    }
}

/* AOS Animation Fixes */
[data-aos] {
    overflow: hidden;
    position: relative;
}

[data-aos^="fade"][data-aos^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="fade-left"] {
    transform: translate3d(100px, 0, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-100px, 0, 0);
}

[data-aos="fade-up"] {
    transform: translate3d(0, 100px, 0);
}

[data-aos="fade-down"] {
    transform: translate3d(0, -100px, 0);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
