
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/*variables*/

:root {
--primary-color: #000;
--secondary-color: #fff;
--accent-color: #9FACDC;
--text-color: #333;
--link-color: #666;
--text-bright: #999;

/* Glas-Navbar */
--navbar-glass-bg: rgba(0, 0, 0, 0.2);       /* sehr transparent */
--navbar-glass-border: rgba(223, 212, 212, 0.15);
--navbar-glass-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);


/*Section variables*/
--section-bg-color: #fafafa;
--section-text-color: #555;
--feature-background: #333;
--feature-text-color: #fff;
--feature-h3: #9FACDC;


--section-spacing: 100px;
--bg-primary: #000000;
--button-color: #9FACDC;
/* --button-color: #00a3ff; */
--accent-color-2: #00a3ff;
--card-bg: #111111;

--gmbh: #00a3ff;
--software: #9fabd7;
--agency: #8fa1af;
--textil: #1ca591; 
--textil-dark: #214e48;
--laims: #b5ff3b; 
}

/* Color Schemes for individual fs */
.gmbh{
    color: var(--gmbh) !important;
}

.software{
    color: var(--software) !important;
}

.agency{
    color: var(--agency) !important;
}

.textil{
    color: var(--textil) !important;
}

.laims{
    color: var(--laims) !important;
}

body {
    background-color: var(--primary-color);
    /* background: radial-gradient(circle at top left, #151b2e 0, #050509 45%, #000 100%); */
    color: var(--secondary-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* optional: Hero, damit man die Struktur sieht */
.hero {
    background:
        radial-gradient(circle at 10% 0%, rgba(159, 172, 220, 0.35) 0, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.28) 0, transparent 55%);
}

.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

p {
    color: var(--text-bright);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    gap: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--button-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    scale: 1.2;
}

/* Glas-Navbar */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* WICHTIG: keine volle schwarze Fläche mehr */
    background: var(--navbar-glass-bg);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);

    border-bottom: 1px solid var(--navbar-glass-border);
    box-shadow: var(--navbar-glass-shadow);

    z-index: 100;
}

/* Logo & Nav-Text bewusst hell */
.logo {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    height: 80px;
    width: 260px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo span {
    color: var(--button-color);
}

/* CTA-Button */
.cta-button {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-image:  linear-gradient(rgba(15, 15, 15, 0.2), rgba(10, 10, 10, 0.2)), url('assets/dark-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat; */
    z-index: 10;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
    color: var(--accent-color);
}

.hero p {
    font-size: 20px;
    color: var(--secondary-color);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--secondary-color);
}

.secondary-button:hover {
    transform: translateY(-1px);
    color: var(--link-color);
}



/* support / placeholders */
.placeholder_hero{
    height: 15vh;
    width: 100%;
    background-color: var(--primary-color);
    z-index: -2;
}

/*home hero image settings*/
.home-hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#lottie {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-39%, -90%);
    width: 100%;
    height: 150px;
    padding: 0px;
    z-index: -1;
}

.home-hero-content{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    align-items: center;
    gap: 30px;
}

.home-hero-image-container{
    width: 100%;
    height: 600px;
    padding: 20px;
}

.home-hero-image {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 200px;
    transform: rotate(0deg);
    transform-origin: center center;
    z-index: -1;

    opacity: 1;
}

.home-hero-image.loaded {
    opacity: 1;
    transition: opacity 1s ease;
}

.home-hero-video-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 900px;
    padding: 0px;
}

.home-hero-video {
    width: 100%;
    height: 900px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0px;
    transform: rotate(0deg);
    transform-origin: center center;
    z-index: -1;

    opacity: 1;
}

/* How it Works on Homepage */
#how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Homepage Stats section */
.stats-h3{
    color: var(--accent-color);
}

/* Problem Section */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

section.problems {
    padding: 2rem 0 0 0;
    position: relative;
    /* background-color: #000; */
}

.section-heading {
    color: var(--secondary-color);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Blue Shadow on the card when in view or hovering */
/* .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.2s ease;
} */

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--text-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-bright);
    font-size: 24px;
}

.highlighted-icon {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    transition: background 0.3s, color 0.3s;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-light);
    font-size: 16px;
}

.problem-card .highlight {
    /* background: linear-gradient(120deg, var(--accent-color) 100%, var(--accent-color) 10%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%; */
    background: #333;
    /* text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--accent-color); */
}

@media (max-width: 1100px) {

    .problems-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 425px) {

    .problems-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .problem-card {
        padding: 20px;
    }
}


/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.problem-card {
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }

.problem-card {
  opacity: 0;
  transition: opacity .4s ease; /* für sanftes Einblenden */
}
.problem-card.in-view {
  opacity: 1;
}

.highlight {
  background: linear-gradient(transparent 60%, currentColor 0) no-repeat;
  color: inherit;
  /* Alternativ: background-color: #ffec99; oder text-decoration: underline; */
}

.p_black {
    color: #000 !important;
}

/* Features Section */
.features {
    padding: 60px 40px;
    /* background-color: var(--primary-color); */
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-bright);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--feature-h3);
}

.feature-card p {
    color: var(--feature-text-color);
    font-size: 15px;
}

/* Testimonials */
.testimonials {
    padding: 120px 40px;
    background-color: #fff;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: #fafafa;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #777;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 40px 40px 40px 40px;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.cta-section p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.white-button {
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.white-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--link-color);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #000;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 14px;
    min-height: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .features, .testimonials, .cta-section {
        padding: 40px  20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .copyright {
        padding: 0 10px;
    }
    
}

@media (max-width: 425px) {
    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .trustline-text {
        font-size: 24px !important;
    }
    
}

/* Trust Line styles */
.trustline {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 0;              
  background: radial-gradient(80% 120% at 50% 0%, rgba(0,0,0,.08), transparent),
              linear-gradient(180deg, #0f172a, #111827); 
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
  margin: 2rem 0;
  width: 100%;
}

.trustline::after {          
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0), rgba(255,255,255,.12));
  mix-blend-mode: overlay;
  opacity: .35;
}

.trustline .container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.trustline-text {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  font-size: clamp(1rem, 2.4vw, 2rem);
  margin: 0;
  max-width: none;
}

.trustline-em {
  display: inline-block;
  padding: 0.15em .2em;
  margin: 0.2em;
  border-radius: .6rem;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

/* reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  .trustline, .trustline::after { transition: none; }
}


