
.hero-points {
    margin: 2rem auto 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
    list-style: none;
    max-width: 700px;
}

.hero-points li {
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(8, 8, 8, 0.98);
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-points li::after {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 1;
}

.tool-card.webdesign {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(20, 20, 20, 0.8);
}

.tool-card.webdesign:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.tool-card.webdesign .tool-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 237, 78, 0.8));
    color: #000000;
}

.value-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(5, 5, 5, 0.8) 100%);
}

.value-grid {
    margin-top: 3.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.value-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 215, 0, 0.85);
}

.value-card p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.8rem;
}

.value-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.value-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.value-link:hover {
    color: rgba(255, 215, 0, 0.95);
}

.value-link:hover::after {
    transform: translateX(4px);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.resources-section {
    padding: 8rem 0 6rem;
}

.resource-grid {
    margin-top: 3.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.resource-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    gap: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card h3 {
    font-size: 1.4rem;
    color: rgba(255, 215, 0, 0.85);
}

.resource-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 215, 0, 0.8);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.resource-link:hover {
    color: rgba(255, 215, 0, 0.95);
}

.resource-link:hover::after {
    transform: translateX(4px);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(8, 8, 8, 0.65) 100%);
}

.faq-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(20, 20, 20, 0.8);
    transition: all 0.3s ease;
    padding: 1rem 1.4rem;
    position: relative;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 215, 0, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-points {
        font-size: 0.95rem;
        margin-top: 1.6rem;
    }
}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    background: #0a0a0a;

    color: #ffffff;

    overflow-x: hidden;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    width: 100%;

    max-width: 100vw;

}





.bg-animation {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);

}



.data-streams {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}



.data-streams::before {

    content: '';

    position: absolute;

    top: 20%;

    left: 10%;

    width: 2px;

    height: 200px;

    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);

    border-radius: 50px;

    animation: pulseVertical1 4s ease-in-out infinite;

}



.data-streams::after {

    content: '';

    position: absolute;

    top: 30%;

    right: 15%;

    width: 2px;

    height: 150px;

    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.25), transparent);

    border-radius: 50px;

    animation: pulseVertical2 5s ease-in-out infinite;

}



.pulse-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 50px;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}



.pulse-1 {

    top: 15%;

    left: 20%;

    height: 120px;

    animation: pulseVertical1 3s ease-in-out infinite;

}



.pulse-2 {

    top: 60%;

    right: 25%;

    height: 80px;

    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.15), transparent);

    animation: pulseVertical2 4.5s ease-in-out infinite;

}



.pulse-3 {

    top: 40%;

    left: 70%;

    height: 100px;

    background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.1), transparent);

    animation: pulseVertical1 5.5s ease-in-out infinite;

}



.pulse-4 {

    top: 80%;

    left: 50%;

    height: 60px;

    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.1), transparent);

    animation: pulseVertical2 3.5s ease-in-out infinite;

}



.glitch-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: 

        repeating-linear-gradient(

            0deg,

            transparent,

            transparent 2px,

            rgba(255, 215, 0, 0.02) 2px,

            rgba(255, 215, 0, 0.02) 4px

        );

    animation: glitch 8s linear infinite;

}



@keyframes pulseVertical1 {

    0%, 100% { 

        opacity: 0.3;

        transform: scaleY(0.8);

    }

    50% { 

        opacity: 0.8;

        transform: scaleY(1.2);

    }

}



@keyframes pulseVertical2 {

    0%, 100% { 

        opacity: 0.2;

        transform: scaleY(0.6);

    }

    50% { 

        opacity: 0.6;

        transform: scaleY(1.4);

    }

}



@keyframes glitch {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.8; }

}





.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background: rgba(10, 10, 10, 0.95);

    -webkit-backdrop-filter: blur(20px);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 215, 0, 0.2);

    z-index: 1000;

    padding: 1rem 0;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 2rem;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.nav-logo {

    font-size: 1.8rem;

    font-weight: 700;

}



.logo-text {

    color: #ffffff;

}



.logo-accent {

    color: rgba(255, 215, 0, 0.9);

}



.nav-links {

    display: flex;

    gap: 2rem;

}



.nav-link {

    color: #ffffff;

    text-decoration: none;

    font-weight: 500;

    transition: all 0.3s ease;

    position: relative;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background: rgba(255, 215, 0, 0.8);

    transition: width 0.3s ease;

}



.nav-link:hover::after {

    width: 100%;

}



.nav-link:hover {

    color: rgba(255, 215, 0, 0.9);

}





.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    padding: 0 2rem;

}



.hero-container {

    max-width: 1200px;

    width: 100%;

    text-align: center;

}



.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    overflow: visible;
}

.title-line {
    display: block;
    position: relative;
    padding: 0.05em 0;
    overflow: visible;
}

.title-line.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 237, 78, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    display: inline-block;
    padding: 0.08em 0;
    overflow: visible;
}



@keyframes goldShine {

    0%, 100% { filter: brightness(1); }

    50% { filter: brightness(1.3); }

}



.hero-subtitle {

    font-size: 1.5rem;

    color: #cccccc;

    margin-bottom: 3rem;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}



.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 237, 78, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    display: inline-block;
}



.hero-cta {

    margin-top: 3rem;

}

.section-focus {
    animation: sectionPulse 1.2s ease;
}

@keyframes sectionPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0.0);
    }
    30% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0.0);
    }
}

.hidden {
    display: none !important;
}

.analysis-section {
    padding: 8rem 0 6rem;
    position: relative;
}

.analysis-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.analysis-headline {
    max-width: 720px;
    text-align: center;
}

.analysis-title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.analysis-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
}

.analysis-form {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.analysis-input-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    background: rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.analysis-input-group input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 0 1.5rem;
    outline: none;
}

.analysis-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.analysis-form .btn {
    min-width: 260px;
}

.analysis-form.loading .btn {
    opacity: 0.6;
    pointer-events: none;
}

.input-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.analysis-loader {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    padding: 2.5rem;
}

.loader-visual {
    position: relative;
    width: 90px;
    height: 90px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-top-color: rgba(255, 215, 0, 0.8);
    animation: loaderSpin 1.4s linear infinite;
}

.loader-ring:nth-child(2) {
    animation-duration: 1.8s;
    border: 3px solid rgba(0, 255, 255, 0.2);
    border-top-color: rgba(0, 255, 255, 0.7);
}

.loader-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.loader-step {
    transition: color 0.3s ease, transform 0.3s ease;
}

.loader-step.active {
    color: rgba(255, 215, 0, 0.95);
    transform: translateY(-2px);
}

.analysis-result {
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 22px;
    padding: 2.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.result-score-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.score-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.score-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.score-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.95);
}

.score-progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.score-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.95), rgba(0, 255, 255, 0.6));
    border-radius: 999px;
    transition: width 0.6s ease;
}

.score-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.score-percent {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.9);
}

.score-summary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.result-details {
    display: grid;
    gap: 1.25rem;
}

.result-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 18, 18, 0.85);
}

.result-item.pass {
    border-color: rgba(0, 200, 155, 0.4);
}

.result-item.fail {
    border-color: rgba(255, 80, 80, 0.45);
}

.result-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.result-copy h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.result-copy p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.6rem;
}

.result-meta {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 255, 255, 0.75);
}

.analysis-error {
    width: 100%;
    max-width: 720px;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.5);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    color: rgba(255, 160, 160, 0.95);
    font-weight: 600;
    text-align: center;
}

.cta-bridge {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 255, 255, 0.08));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 6rem 0;
}

.cta-bridge.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-bridge-container {
    display: flex;
    justify-content: center;
}

.cta-bridge-content {
    max-width: 780px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-bridge-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
}

.cta-bridge-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.cta-bridge .btn-cta {
    align-self: center;
}




.btn {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    padding: 1rem 2rem;

    border: none;

    border-radius: 8px;

    font-size: 1.1rem;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.btn-premium {

    background: rgba(8, 8, 8, 0.98);

    color: rgba(255, 215, 0, 0.9);

    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}



.btn-premium:hover {

    transform: translateY(-2px);

    border-color: rgba(255, 215, 0, 0.35);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);

    color: rgba(255, 215, 0, 0.95);

}



.btn-tool {

    background: rgba(8, 8, 8, 0.98);

    color: rgba(255, 215, 0, 0.85);

    width: 100%;

    justify-content: center;

    border: 1px solid rgba(255, 215, 0, 0.15);

}



.btn-tool:hover {

    transform: translateY(-2px);

    border-color: rgba(255, 215, 0, 0.3);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);

    background: rgba(12, 12, 12, 0.99);

    color: rgba(255, 215, 0, 0.95);

}



.btn-tool.disabled {

    background: #333333;

    color: #666666;

    cursor: not-allowed;

}



.btn-tool.disabled:hover {

    transform: none;

    box-shadow: none;

}



.btn-cta {

    background: rgba(8, 8, 8, 0.98);

    color: rgba(255, 215, 0, 0.9);

    font-size: 1.2rem;

    padding: 1.2rem 2.5rem;

    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);

}



.btn-cta:hover {

    transform: translateY(-3px);

    border-color: rgba(255, 215, 0, 0.35);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);

    color: rgba(255, 215, 0, 0.95);

}



.btn-glow {

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

    transition: left 0.5s ease;

}



.btn:hover .btn-glow {

    left: 100%;

}





.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 2rem;

}





.section-title {

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-weight: 700;

    text-align: center;

    margin-bottom: 1rem;

}



.title-accent {

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 237, 78, 0.9));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.section-subtitle {

    font-size: 1.2rem;

    color: #cccccc;

    text-align: center;

    margin-bottom: 4rem;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}





.tools-section {

    padding: 8rem 0;

    position: relative;

}



.tools-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-top: 4rem;

}






.tool-card {

    background: rgba(20, 20, 20, 0.8);

    border: 1px solid rgba(255, 215, 0, 0.2);

    border-radius: 16px;

    padding: 2rem;

    position: relative;

    overflow: hidden;

    transition: all 0.3s ease;

}



.tool-card.premium {

    border-color: rgba(255, 215, 0, 0.4);

    background: rgba(255, 215, 0, 0.05);

}



.tool-card:hover {

    transform: translateY(-5px);

    border-color: rgba(255, 215, 0, 0.4);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);

}



.tool-card.premium:hover {

    border-color: rgba(255, 215, 0, 0.6);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);

}



.card-glow {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05), transparent);

    opacity: 0;

    transition: opacity 0.3s ease;

}



.tool-card:hover .card-glow {

    opacity: 1;

}



.card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1.5rem;

}



.tool-icon {

    font-size: 2.5rem;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 215, 0, 0.1);

    border-radius: 12px;

    border: 1px solid rgba(255, 215, 0, 0.3);

}



.tool-badge {

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 237, 78, 0.8));

    color: #000000;

    padding: 0.5rem 1rem;

    border-radius: 20px;

    font-size: 0.9rem;

    font-weight: 600;

}



.tool-name {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: #ffffff;

}



.tool-description {

    color: #cccccc;

    margin-bottom: 1.5rem;

    line-height: 1.6;

}



.tool-features {

    display: flex;

    flex-direction: column;

    gap: 0.5rem;

    margin-bottom: 2rem;

}



.feature {

    color: rgba(255, 215, 0, 0.85);

    font-size: 0.9rem;

    font-weight: 500;

}



.card-footer {

    margin-top: auto;

}





.about-section {

    padding: 8rem 0;

    background: rgba(0, 0, 0, 0.3);

}



.about-content {

    text-align: center;

}



.about-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 3rem;

    margin-top: 4rem;

}



.about-item {

    text-align: center;

    padding: 2rem;

}



.about-icon {

    font-size: 3rem;

    margin-bottom: 1.5rem;

    display: block;

}



.about-item h3 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: #ffd700;

}



.about-item p {

    color: #cccccc;

    line-height: 1.6;

}





.cta-section {

    padding: 8rem 0;

    text-align: center;

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));

}



.cta-title {

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-weight: 700;

    margin-bottom: 1.5rem;

}



.cta-subtitle {

    font-size: 1.3rem;

    color: #cccccc;

    margin-bottom: 3rem;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}

.contact-section {

    padding: 8rem 0;

    text-align: center;

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 237, 78, 0.08));

}



.contact-content {

    max-width: 900px;

    margin: 0 auto;

}



.contact-title {

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-weight: 700;

    margin-bottom: 1.5rem;

}



.contact-subtitle {

    font-size: 1.2rem;

    color: #cccccc;

    margin-bottom: 3rem;

    max-width: 640px;

    margin-left: auto;

    margin-right: auto;

}



.contact-form {

    position: relative;

    margin-top: 3rem;

    background: rgba(10, 10, 10, 0.82);

    border: 1px solid rgba(255, 215, 0, 0.2);

    border-radius: 22px;

    padding: 3.5rem;

    display: flex;

    flex-direction: column;

    gap: 2rem;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

}



.form-row {

    display: flex;

    gap: 2rem;

    flex-wrap: wrap;

}



.form-group {

    flex: 1;

    min-width: 240px;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

}



.form-group label {

    color: #ffffff;

    font-size: 0.95rem;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-transform: uppercase;

}



.form-group input,

.form-group textarea {

    background: rgba(15, 15, 15, 0.92);

    border: 1px solid rgba(255, 215, 0, 0.24);

    border-radius: 14px;

    padding: 1rem 1.25rem;

    color: #ffffff;

    font-size: 1rem;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;

    outline: none;

}



.form-group input::placeholder,

.form-group textarea::placeholder {

    color: rgba(255, 255, 255, 0.45);

}



.form-group textarea {

    resize: vertical;

    min-height: 180px;

}



.form-group input:focus,

.form-group textarea:focus {

    border-color: rgba(255, 215, 0, 0.5);

    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12);

}



.form-privacy {

    display: flex;

    gap: 1rem;

    align-items: flex-start;

    text-align: left;

    color: #cccccc;

    line-height: 1.6;

}



.form-privacy input {

    width: 22px;

    height: 22px;

    accent-color: #ffd700;

    margin-top: 0.2rem;

}



.form-privacy label {

    color: #cccccc;

    font-size: 0.95rem;

}



.privacy-link,

.form-privacy a {

    color: #ffd700;

    text-decoration: none;

    border-bottom: 1px solid rgba(255, 215, 0, 0.4);

    transition: color 0.3s ease, border-color 0.3s ease;

}



.privacy-link:hover,

.form-privacy a:hover {

    color: rgba(255, 215, 0, 0.95);

    border-color: rgba(255, 215, 0, 0.6);

}



.contact-form .btn {

    align-self: flex-start;

}



.honey-container {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    opacity: 0;

    pointer-events: none;

}

.page-transition {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(115deg, rgba(12, 12, 12, 0.98) 0%, rgba(255, 215, 0, 0.28) 35%, rgba(255, 237, 78, 0.42) 55%, rgba(12, 12, 12, 0.98) 100%);

    opacity: 0;

    transform: translateX(100%) skewX(-14deg);

    transform-origin: right;

    transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s ease;

    pointer-events: none;

    z-index: 999;

    will-change: transform, opacity;

    backdrop-filter: blur(6px);

}



.page-transition::after {

    content: '';

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 10px, transparent 10px, transparent 20px);

    mix-blend-mode: screen;

    opacity: 0.35;

}



.page-transition.active {

    opacity: 1;

    transform: translateX(0) skewX(0deg);

}

.thankyou-section {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 6rem 2rem;

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 237, 78, 0.08));

}



.thankyou-card {

    max-width: 720px;

    width: 100%;

    background: rgba(10, 10, 10, 0.8);

    border: 1px solid rgba(255, 215, 0, 0.25);

    border-radius: 24px;

    padding: 4rem;

    text-align: center;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);

}



.thankyou-card h1 {

    font-size: clamp(2.5rem, 5vw, 3.5rem);

    margin-bottom: 1rem;

}



.thankyou-card p {

    color: #cccccc;

    font-size: 1.1rem;

    line-height: 1.7;

    margin-bottom: 2.5rem;

}



.thankyou-actions {

    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

}



.thankyou-actions .btn {

    min-width: 200px;

}





.footer {

    background: rgba(0, 0, 0, 0.8);

    border-top: 1px solid rgba(255, 215, 0, 0.2);

    padding: 3rem 0 2rem;

}



.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 2rem;

}



.footer-logo {

    font-size: 1.5rem;

    font-weight: 700;

}



.footer-links {

    display: flex;

    gap: 2rem;

}



.footer-link {

    color: #cccccc;

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-link:hover {

    color: #ffd700;

}



.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #666666;

}



.legal-wrapper {

    padding: 140px 0 100px;

    position: relative;

}

.legal-header {

    text-align: center;

    margin-bottom: 60px;

}

.legal-title {

    font-size: clamp(2.5rem, 5vw, 3.5rem);

    font-weight: 700;

}

.legal-subtitle {

    color: #999999;

    max-width: 640px;

    margin: 1rem auto 0;

    line-height: 1.7;

}

.legal-card {

    max-width: 900px;

    margin: 0 auto 2.5rem;

    background: rgba(10, 10, 10, 0.85);

    border: 1px solid rgba(255, 215, 0, 0.15);

    border-radius: 20px;

    padding: 3rem;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);

    -webkit-backdrop-filter: blur(12px);

    backdrop-filter: blur(12px);

}

.legal-card p {

    margin-bottom: 1.2rem;

    color: #cccccc;

}

.legal-card strong {

    color: #ffffff;

    font-weight: 700;

}

.legal-section-title {

    font-size: 1.4rem;

    font-weight: 600;

    color: #ffd700;

    margin-bottom: 1rem;

}

.legal-meta {

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    color: #ffd700;

    margin-bottom: 1.5rem;

    display: block;

}

.legal-list {

    list-style: none;

    margin-bottom: 1.5rem;

}

.legal-list li {

    padding-left: 1.4rem;

    position: relative;

    margin-bottom: 0.9rem;

    color: #cccccc;

}

.legal-list li::before {

    content: "•";

    color: #ffd700;

    position: absolute;

    left: 0;

    font-size: 1.2rem;

    line-height: 1;

}

.legal-note {

    font-size: 0.95rem;

    color: #999999;

}

.legal-link {

    color: #ffd700;

    text-decoration: none;

    transition: color 0.3s ease;

}

.legal-link:hover {

    color: #ffd700;

}





@media (max-width: 768px) {
    
    .bg-animation .pulse-line {
        animation-duration: 6s;
        opacity: 0.3;
    }
    
    .value-card:hover,
    .resource-card:hover,
    .tool-card:hover,
    .faq-item:hover {
        transform: none;
    }
    
    .navbar {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    
    @media (prefers-reduced-motion: no-preference) {
        .pulse-line {
            animation-duration: 8s;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .pulse-line,
        .card-glow {
            animation: none;
        }
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.6;
    }
    
    .hero-points {
        gap: 0.875rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .hero-points li {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
    
    .hero-points li::before,
    .hero-points li::after {
        width: 18px;
        height: 18px;
    }
    
    .hero-points li::after {
        font-size: 0.7rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-grid,
    .resource-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card,
    .resource-card {
        padding: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group {
        min-width: 100%;
    }

    .form-privacy {
        flex-direction: column;
        align-items: flex-start;
    }

    .thankyou-card {
        padding: 2rem 1.5rem;
    }

    .thankyou-actions .btn {
        width: 100%;
    }

    .analysis-input-group {
        grid-template-columns: 1fr;
        padding: 0.75rem;
    }

    .analysis-input-group input {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .analysis-form .btn {
        width: 100%;
    }

    .analysis-loader,
    .analysis-result,
    .analysis-error {
        padding: 2rem 1.5rem;
    }

    .result-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    
    .value-section,
    .resources-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 3vw, 1.15rem);
    }
}





.fade-in {

    opacity: 0;

    transform: translateY(30px);

    transition: all 0.6s ease;

}



.fade-in.visible {

    opacity: 1;

    transform: translateY(0);

}





::-webkit-scrollbar {

    width: 8px;

}



::-webkit-scrollbar-track {

    background: #1a1a1a;

}



::-webkit-scrollbar-thumb {

    background: linear-gradient(135deg, #ffd700, #ffed4e);

    border-radius: 4px;

}



::-webkit-scrollbar-thumb:hover {

    background: linear-gradient(135deg, #ffd700, #ffed4e);

}

@keyframes loaderSpin {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}


.analysis-section {
    padding: 6rem 0;
}

.analysis-section .container {
    max-width: 720px;
    text-align: center;
}

.btn-analysis {
    background: rgba(255, 215, 0, 0.12);
    color: rgba(255, 215, 0, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.35);
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-analysis:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.18);
}

.analysis-section .section-title {
    margin-bottom: 1.5rem;
}

.analysis-section .section-subtitle {
    margin-bottom: 3rem;
}

.about-section {
    padding: 6rem 0 8rem;
    background: rgba(0, 0, 0, 0.35);
}

.about-section .container {
    max-width: 720px;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.ai-chat-launcher {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 237, 78, 0.28));
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 2000;
}

.ai-chat-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.28), rgba(255, 237, 78, 0.38));
}

.launcher-icon {
    font-size: 1.2rem;
}

.launcher-label {
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ai-chat-window {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 380px;
    max-width: calc(100vw - 48px);
    display: flex;
    flex-direction: column;
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 2100;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ai-chat-window.hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.ai-chat-window.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 215, 0, 0.06);
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.ai-chat-header-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ai-chat-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ai-chat-header-top {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ai-chat-header h3 {
    font-size: 1.18rem;
    font-weight: 700;
}

.ai-chat-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.ai-chat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.75), rgba(0, 255, 255, 0.75));
}

.ai-chat-close,
.ai-chat-clear {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-close {
    font-size: 1.1rem;
}

.ai-chat-close:hover {
    background: rgba(255, 215, 0, 0.3);
}

.ai-chat-clear:hover {
    background: rgba(255, 80, 80, 0.3);
}

.ai-chat-conversation {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 380px;
    overflow-y: auto;
}

.ai-chat-message {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ai-chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
    white-space: pre-line;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.ai-chat-bubble.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.38), rgba(255, 237, 78, 0.42));
    border: 1px solid rgba(255, 215, 0, 0.55);
    color: #0a0a0a;
    font-weight: 600;
}

.ai-chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chat-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-block;
    margin: 0.1rem 0;
}

.chat-link:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #fff;
}

.ai-chat-form {
    padding: 1.2rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(255, 215, 0, 0.18);
    background: rgba(12, 12, 12, 0.95);
}

.ai-chat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.ai-chat-input-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

#aiChatInput {
    width: 100%;
    resize: none;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    background: rgba(15, 15, 15, 0.92);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    min-height: 64px;
}

#aiChatInput:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12);
}

.ai-chat-send {
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 237, 78, 0.45));
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, 0.25);
}

.ai-chat-hint {
    margin: 0;
    padding: 0 1.6rem 1.2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.ai-chat-hint a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}

.ai-chat-hint a:hover {
    border-color: rgba(255, 215, 0, 0.6);
}

.ai-chat-lead {
    padding: 0 1.6rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ai-chat-lead-toggle {
    align-self: stretch;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(15, 15, 15, 0.95);
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
}

.ai-chat-lead-toggle:hover,
.ai-chat-lead-toggle:focus-visible {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.6);
    outline: none;
}

.ai-chat-lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background: rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 0.85rem 1rem;
}

.ai-chat-lead-form.hidden {
    display: none;
}

.ai-chat-lead-row input,
.ai-chat-lead-row textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(20, 20, 20, 0.92);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.55rem 0.7rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-lead-row input:focus,
.ai-chat-lead-row textarea:focus {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    outline: none;
}

.ai-chat-lead-row textarea {
    resize: vertical;
    min-height: 70px;
}

.ai-chat-lead-submit {
    align-self: flex-start;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85), rgba(255, 237, 78, 0.85));
    color: #0f0f0f;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-lead-submit:hover,
.ai-chat-lead-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.28);
    outline: none;
}

.ai-chat-lead-feedback {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    min-height: 1.1em;
}

.ai-chat-lead-feedback.is-error {
    color: #ff7272;
}

.ai-chat-lead-feedback.is-success {
    color: #a8ffd6;
}

@media (max-width: 768px) {
    .analysis-section {
        padding: 4rem 0;
    }

    .about-section {
        padding: 4rem 0 5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ai-chat-launcher {
        right: 16px;
        bottom: 16px;
        padding: 0.75rem 1.2rem;
    }

    .ai-chat-window {
        right: 16px;
        bottom: 88px;
        width: min(340px, calc(100vw - 24px));
    }

    .ai-chat-conversation {
        max-height: 400px;
    }

    .ai-chat-lead {
        padding: 0 1.2rem 1rem;
    }
}


.ai-chat-launcher .ai-chat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.7);
    }
}

.ai-chat-notification {
    animation: chatBounce 0.6s ease-in-out 3;
}

@keyframes chatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-12px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-6px);
    }
}

.ai-chat-notification::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 237, 78, 0.4));
    animation: pulseGlow 1.5s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}


.chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 1000;
}


@media (max-width: 768px) {
  .chat-container {
    width: 90%;
    max-height: 70vh;
    bottom: 10px;
    left: 5%;
    right: 5%;
  }
  .chat-header {
    padding: 8px 10px;
  }
  .chat-messages {
    padding: 5px;
  }
  .chat-input-container {
    padding: 5px;
  }
  .chat-input-container input,
  .chat-input-container button {
    padding: 8px;
  }
}


@media (max-width: 768px) {
    .ai-chat-launcher {
        right: 16px;
        bottom: 18px;
        padding: 0.75rem 1.2rem;
    }

    .ai-chat-window {
        right: 12px;
        left: 12px;
        bottom: 90px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        max-height: calc(100vh - 120px);
        max-height: calc(100dvh - 120px);
    }

    .ai-chat-conversation {
        max-height: 45vh;
        max-height: 45dvh;
    }
    
    .ai-chat-header {
        padding: 1rem 1.2rem;
    }
    
    .ai-chat-header h3 {
        font-size: 1rem;
    }
    
    .ai-chat-header p {
        font-size: 0.8rem;
    }
    
    .ai-chat-lead {
        padding: 0 1rem 0.8rem;
    }
    
    .ai-chat-form {
        padding: 0.9rem 1.2rem 1rem;
    }
    
    #aiChatInput {
        min-height: 80px;
        padding: 0.8rem 1rem;
        font-size: 16px;
    }

    .ai-chat-bubble {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }
    
    .ai-chat-hint {
        font-size: 0.7rem;
        padding: 0 1rem 0.8rem;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 14px 28px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .contact-form .btn {
        width: 100%;
        max-width: 100%;
    }
}


@media (max-width: 380px) {
    .ai-chat-window {
        right: 8px;
        left: 8px;
        bottom: 85px;
    }
    
    .ai-chat-launcher {
        right: 12px;
        bottom: 14px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .ai-chat-header {
        padding: 0.9rem 1rem;
    }
    
    .ai-chat-conversation {
        max-height: 40vh;
        max-height: 40dvh;
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .ai-chat-launcher {
        right: 8px;
        bottom: 12px;
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .launcher-icon {
        font-size: 1rem;
    }
    
    .launcher-label {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }
    
    .ai-chat-window {
        right: 4px;
        left: 4px;
        bottom: 80px;
        max-width: calc(100vw - 8px);
        max-height: calc(100vh - 100px);
        max-height: calc(100dvh - 100px);
        border-radius: 12px;
    }
    
    .ai-chat-header {
        padding: 0.75rem 0.9rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .ai-chat-header-text {
        flex: 1;
        min-width: 0;
    }
    
    .ai-chat-header h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .ai-chat-header p {
        font-size: 0.7rem;
    }
    
    .ai-chat-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }
    
    .ai-chat-header-buttons {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .ai-chat-close,
    .ai-chat-clear {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .ai-chat-close {
        font-size: 1rem;
    }
    
    .ai-chat-conversation {
        padding: 0.75rem 0.9rem;
        max-height: calc(100vh - 280px);
        max-height: calc(100dvh - 280px);
        gap: 0.7rem;
    }
    
    .ai-chat-bubble {
        font-size: 0.85rem;
        padding: 0.55rem 0.8rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .ai-chat-form {
        padding: 0.8rem 0.9rem 0.9rem;
        gap: 0.5rem;
    }
    
    .ai-chat-label {
        font-size: 0.7rem;
    }
    
    .ai-chat-input-group {
        gap: 0.6rem;
    }
    
    #aiChatInput {
        min-height: 72px;
        padding: 0.7rem 0.9rem;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .ai-chat-send {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 0.9rem;
        touch-action: manipulation;
    }
    
    .ai-chat-launcher {
        touch-action: manipulation;
        min-width: 44px;
        min-height: 44px;
    }
    
    .ai-chat-lead {
        padding: 0 0.9rem 0.75rem;
        gap: 0.7rem;
    }
    
    .ai-chat-lead-toggle {
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .ai-chat-lead-form {
        padding: 0.75rem 0.85rem;
        gap: 0.6rem;
        border-radius: 12px;
    }
    
    .ai-chat-lead-row input,
    .ai-chat-lead-row textarea {
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .ai-chat-lead-submit {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .ai-chat-lead-feedback {
        font-size: 0.75rem;
    }
    
    .ai-chat-hint {
        padding: 0 0.9rem 0.75rem;
        font-size: 0.65rem;
        line-height: 1.4;
    }
    
    .chat-link {
        font-size: 0.85rem;
        padding: 0.1rem 0.3rem;
    }
    
    .ai-chat-status {
        font-size: 0.7rem;
    }
}

