/* Base Styles */
:root
{
    --primary: #3b82f6;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --background: #0f172a;
    --text: #f8fafc;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    font-family: 'Archivo', 'Work Sans', 'Inter', 'Sora', 'system-ui', 'Helvetica', 'Arial', sans-serif;
    color: var(--text);

    background-image: url('../images/titel-bg.png') !important;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;

    line-height: 1.58;
    font-weight: 100;
}

.container
{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 22px;
}

.section
{
    min-height: 100vh;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 70px;
}

.section-title {
    font-size: 6.4rem;
    text-align: center;
    margin-bottom: 2.4rem;
    font-weight: 200;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 100;
}

.section-subtitle.big {
    font-size: 2.7rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1.86rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 200;
}

/* Glass Card Effect */
.glass-card
{
    background: rgba(0, 0, 40, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 34px 0 rgba(0, 0, 0, 0.44);
    padding: 2rem;
    transition: all 0.3s ease;
    will-change: background, backdrop-filter, transform, box-shadow;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.glass-card:hover
{
    background: rgba(0, 0, 24, 0.25);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    transform: translateY(-9px) translateZ(6px);
    box-shadow: 0 14px 52px 0 rgba(0, 0, 0, 0.66);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.77rem 1.55rem;
    border-radius: 0.5rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

/* Menu Button Fade-in Styles */
.menu-btn {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-btn.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(144deg, #60a5fa 0%, #2563eb 100%);
    color: white;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 11px 34px rgba(59, 130, 246, 0.86);
    border: 1px solid rgba(37, 99, 235, 0.5);
    font-weight: 500;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(37, 99, 235, 0.5);
    box-shadow: 0 10px 32px rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    font-weight: 500;
}

.btn-full {
    width: 100%;
    text-align: center;
    font-weight: 500;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(15, 20, 22, 0.6);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 0.52rem 0;
}

#navbar.scrolled {
    background: rgba(15, 20, 22, 0.6);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 0.86rem 0;
}


#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.92rem;
    background: transparent;
}

.nav-link {
    color: rgba(255,255,255,0.66);
    text-decoration: none;
    font-weight: 200;
    transition: all 0.33s ease;
    padding: 3px;
}


.nav-link:hover,
.nav-link.active
{
     color: rgba(255, 255, 255, 1);
     text-shadow: 0 0 16px rgba(255, 255, 255, 0.99);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.32s ease;
}

/* Hero Section */
.hero-content {
    display: block;
}

.hero-text h1 {
    font-size: 3.4rem;
    line-height: 3.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

#title_img
{
    border-radius: 16px !important;
    width: 86% !important;
    max-width: 400px;
}

.hero-text .subtitle {
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: block;
    gap: 1rem;
    margin: 0 auto 2rem auto;
}

.hero-card
{
    width: 60%;
    min-width: 300px;
    margin: 4.2rem auto 4.2rem auto;
}

.hero-card h2 {
    font-size: 1.9rem;
    margin-bottom: 1.55rem;
}

.hero-card p {
    margin-bottom: 1.2rem;
}

.hero-card .small-text {
    font-size: 1rem;
    color: #cbd5e1;
}

.hero-content .btn {
    margin: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* SVG Icon Animations */
.service-icon svg {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.7) rotate(-12deg);
    opacity: 0.3;
    filter: blur(2px);
}

.service-icon svg.animate-in {
    transform: scale(1.22) rotate(0deg);
    opacity: 1;
    filter: blur(0px);
}

.service-icon svg.animate-out {
    transform: scale(0.7) rotate(-12deg);
    opacity: 0.3;
    filter: blur(2px);
}

/* Different animation styles for variety */
.service-icon svg:nth-child(1) {
    transition-delay: 0.1s;
}

.service-icon svg:nth-child(2) {
    transition-delay: 0.2s;
}

.service-icon svg:nth-child(3) {
    transition-delay: 0.3s;
}

/* Hover effects for SVG icons */
.service-icon:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.service-icon:hover svg.animate-in {
    transform: scale(1.1) rotate(5deg);
}

/* Pulse animation for when icons are in viewport */
@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
    }
}

.service-icon svg.animate-in {
    animation: pulse-glow 3s ease-in-out infinite;
}

.support-card {
    text-align: center;
    margin-top: 3rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#menu-link-check
{
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 3px 10px;
    border-radius: 6px;
    color: white !important;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid TRANSPARENT;
    background: linear-gradient(var(--primary), var(--secondary));
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.56);
}

.about-card {
    margin-top: 3rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

/* Multi-step form styles */
.form-step {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.form-step.active {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

.form-step.fade-in {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

.weiter-button {
    background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.weiter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.weiter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Button container for side-by-side buttons */
.button-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.zurueck-button {
    background: rgba(255,255,255,0.08);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.zurueck-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.zurueck-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Adjust submit button in button container */
.button-container .btn-full {
    flex: 1;
    margin: 0;
}

/* Glassy Checkbox Styles - Apple Liquid Glass Design */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    margin-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.checkbox-label::before {
    content: '';
    display: inline-block;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-label::before,
.checkbox-label:has(input[type="checkbox"]:checked)::before {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(16, 185, 129, 0.8) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(59, 130, 246, 0.3),
        0 0 20px rgba(59, 130, 246, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-label::after,
.checkbox-label:has(input[type="checkbox"]:checked)::after {
    transform: translateY(-50%) rotate(45deg) scale(1);
    opacity: 1;
}

.checkbox-label input[type="checkbox"]:checked ~ *,
.checkbox-label:has(input[type="checkbox"]:checked) {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Focus states for accessibility */
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-label::before,
.checkbox-label:has(input[type="checkbox"]:focus-visible)::before {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .checkbox-label {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    body {
        line-height: 1.58;
        font-weight: 100;
        position: relative;
        overflow-x: hidden;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url('../images/bg-mobil.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }

    /* Ensure content scrolls over the fixed background */
    .container,
    section,
    nav {
        position: relative;
        z-index: 1;
    }
    
    .checkbox-label::before {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        margin-right: 0.6rem;
    }
    
    .checkbox-label::after {
        left: 1.1rem;
        width: 5px;
        height: 8px;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.pricing-plan.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: 13px;
    left: 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2rem 1.2rem 0 0;
    font-weight: 600;
    transform: translateY(-100%);
    box-shadow: 0 0 43px rgba(37, 98, 245, 1);
    width: 100.22%;
}

.pricing-plan h3 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.price {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.9rem;
}

.plan-description {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.features-list {
    list-style-type: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.features-list li::before {
    content: "✓";
    color: var(--secondary);
    margin-right: 0.5rem;
    font-weight: bold;
    transform: scale(1.2);
}

.consultation-card {
    text-align: center;
    margin-top: 3rem;
}

.consultation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.consultation-card p {
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 1; /* Ensure opacity remains at 1 after animation */
    transform: translateZ(10px); /* Force GPU acceleration */
    -webkit-transform: translateZ(10px);
}

.slide-up {
    animation: slideUp 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.austro
{
    color: #d00000;
}

.maxW
{
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

a.reset,
a.reset:link,
a.reset:visited,
a.reset:hover,
a.reset:active {
    color: inherit;            /* Keine eigene Link-Farbe, erbt vom Eltern-Element */
    text-decoration: none;     /* Keine Unterstreichung */
    background: transparent;   /* Kein Hintergrund */
    border: none;              /* Keine Rahmen (falls z.B. Buttons als Links gestylt waren) */
    cursor: pointer;           /* Standard-Mauszeiger für Klickbarkeit */
    outline: none;             /* Kein Fokus-Rahmen (falls nicht gewünscht) */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }

    #AI
    {
        font-size: 86px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 2.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text .subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.32s ease;
        background: rgba(9, 9, 9, 0.86);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    .pricing-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles for Email Feedback */
.feedback-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.feedback-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: rgba(251, 251, 251, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 66px 0 rgba(0, 0, 0, 0.55);
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s ease;
}

.feedback-lightbox.show .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.lightbox-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.lightbox-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-weight: 300;
}

.lightbox-close {
    background: linear-gradient(140deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.lightbox-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 98, 245, 0.4);
}

.lightbox-content.success {
    border-color: rgba(16, 185, 129, 0.7);
}

.lightbox-content.error {
    border-color: rgba(239, 68, 68, 0.68);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .lightbox-icon {
        font-size: 2.8rem;
    }
    
    .lightbox-title {
        font-size: 1.6rem;
    }
    
    .lightbox-message {
        font-size: 1rem;
    }
}

.generate-idea-btn
{
    display: none !important;
}