﻿@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Add hover effects for various elements */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
}

.pricing-card:hover:not(.featured) {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* FAQ Toggle Animation */
.faq-question:hover {
    background: rgba(46, 125, 50, 0.05);
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Demo Tabs Active State */
.demo-tab:hover:not(.active) {
    color: var(--text-primary);
}

/* Hero section styles */
.prometheus-hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.prometheus-hero-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    padding: 20px;
}


.title-main {
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
}

.hero-metrics {
    display: flex;
    margin-bottom: 2rem;
    gap: 30px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(46, 125, 50, 0.08);
    padding: 15px;
    border-radius: 12px;
    min-width: 120px;
}

    .metric.blue {
        background: rgba(0, 106, 255, 0.08);
    }

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .metric-value.blue {
        background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.metric-label {
    margin: 0;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.prometheus-hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.resume-container {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.resume {
    background: var(--bg-secondary);
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.resume-overlay {
    position: absolute;
    top: 10%;
    left: 55%;
    transform: translateX(-50%);
    z-index: 1;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(46, 125, 50, 0.3) 0%, transparent 70%);
    filter: blur(50px);
}

.keyword-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.keyword {
    position: absolute;
    background: rgba(46, 125, 50, 0.2);
    border: 2px solid rgba(46, 125, 50, 0.8);
    border-radius: 4px;
    padding: 3px 8px;
    animation: pulse 2s infinite;
}

    .keyword:nth-child(1) {
        top: 45%;
        left: 30%;
    }

    .keyword:nth-child(2) {
        top: 60%;
        left: 50%;
        animation-duration: 2.5s;
    }

    .keyword:nth-child(3) {
        top: 75%;
        left: 25%;
        animation-duration: 1.8s;
    }

.keyword-text {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

/* Process section */
.process-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-line {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 4px;
    height: calc(100% - 200px);
    background: linear-gradient(to bottom, #2E7D32, #006aff);
    transform: translateX(-50%);
    z-index: 1;
}

.process-steps {
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    gap: 20%;
}

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
}

    .step-number.blue {
        border-color: #006aff;
        box-shadow: 0 0 20px rgba(0, 106, 255, 0.3);
    }

.step-number-text {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .step-number-text.blue {
        background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.step-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .step-title.blue {
        background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

    .feature-tag.blue {
        background: rgba(0, 106, 255, 0.1);
        color: #006aff;
    }

.step-visual {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    height: 250px;
}


/* Hero section */
.hero {
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.prometheus-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}

.hero-container {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-tag {
    display: inline-block;
    margin: 0 66.666%;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 30px;
}

.hero-tag-text {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.1;
}

.title-main {
    display: block;
}

.hero-subtitle {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
}

/* Resume mockup */
.resume-container {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.resume-header {
    height: 20px;
    width: 50%;
    background: rgba(46, 125, 50, 0.7);
    border-radius: 4px;
    margin-bottom: 15px;
}

.resume-subheader {
    height: 10px;
    width: 80%;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 20px;
}

.resume-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.resume-content {
    flex: 2;
}

.resume-line {
    height: 12px;
    width: 90%;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.resume-line.medium {
    width: 60%;
}

.resume-line.large {
    width: 75%;
}

.resume-line.full {
    width: 100%;
}

.resume-line.xlarge {
    width: 95%;
}

.resume-icon {
    flex: 1;
}

.resume-icon-circle {
    height: 40px;
    width: 40px;
    background: rgba(0, 106, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto;
}

.resume-title {
    height: 16px;
    width: 40%;
    background: rgba(0, 106, 255, 0.7);
    border-radius: 4px;
    margin-bottom: 15px;
}

.resume-title.medium {
    width: 60%;
}

.resume-paragraph {
    margin-bottom: 20px;
}

.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.skill-pill {
    height: 28px;
    width: 70px;
    background: rgba(46, 125, 50, 0.15);
    border-radius: 14px;
}

.skill-pill.medium {
    width: 90px;
}

.skill-pill.small {
    width: 60px;
}

.skill-pill.large {
    width: 80px;
}

.keyword-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.keyword {
    position: absolute;
    background: rgba(46, 125, 50, 0.2);
    border: 2px solid rgba(46, 125, 50, 0.8);
    border-radius: 4px;
    padding: 3px 8px;
    animation: pulse 2s infinite;
}

.keyword.top-left {
    top: 45%;
    left: 30%;
}

.keyword.middle-right {
    top: 60%;
    left: 50%;
    animation-duration: 2.5s;
}

.keyword.bottom-left {
    top: 75%;
    left: 25%;
    animation-duration: 1.8s;
}

.keyword-text {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.resume-overlay {
    position: absolute;
    top: 10%;
    left: 55%;
    transform: translateX(-50%);
    z-index: 1;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(46, 125, 50, 0.3) 0%, transparent 70%);
    filter: blur(50px);
}

/* Section styles */
.my-bg-secondary {
    background: var(--my-bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Background glows */
.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.background-glow.red {
    background: radial-gradient(circle, rgba(255, 69, 69, 0.1), transparent 70%);
}

.background-glow.green {
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent 70%);
}

.background-glow.blue {
    background: radial-gradient(circle, rgba(0, 106, 255, 0.1), transparent 70%);
}

.background-glow.top-right {
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
}

.background-glow.bottom-left {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

.background-glow.bottom-right {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.background-glow.top-left {
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    text-align: center;
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(20px);
}

.stat-glow.red {
    background: radial-gradient(circle at top right, rgba(255, 69, 69, 0.15), transparent 70%);
}

.stat-glow.green {
    background: radial-gradient(circle at top right, rgba(46, 125, 50, 0.15), transparent 70%);
}

.stat-glow.blue {
    background: radial-gradient(circle at top right, rgba(0, 106, 255, 0.15), transparent 70%);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-value.red {
    color: #ff4545;
}

.stat-value.green {
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-value.blue {
    background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.stat-description {
    color: var(--text-secondary);
}

/* Problem-solution comparison */
.problem-solution {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.problem-card-container mycard,
.solution-card-container mycard {
    margin: 0;
}

.problem-card-title {
    margin-bottom: 1.5rem;
}

.problem-card-title.negative {
    color: #ff4545;
}

.problem-card-title.positive {
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.problem-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.problem-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.negative-icon {
    color: #ff4545;
}

.positive-icon {
    color: var(--accent);
}

/* Process flow */
.process-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-line {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 4px;
    height: calc(100% - 200px);
    background: linear-gradient(to bottom, #2E7D32, #006aff);
    transform: translateX(-50%);
    z-index: 1;
}

.process-steps {
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
}

.step-number.blue {
    border-color: #006aff;
    box-shadow: 0 0 20px rgba(0, 106, 255, 0.3);
}

.step-number-text {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-number-text.blue {
    background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-title.blue {
    background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-description {
    margin-bottom: 1rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-tag.blue {
    background: rgba(0, 106, 255, 0.1);
    color: #006aff;
}

.step-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/600x400') center/cover;
    opacity: 0.1;
}

.step-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-visual-content.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    color: var(--accent);
}

.upload-zone {
    width: 200px;
    height: 40px;
    border: 2px dashed var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-text {
    color: var(--accent);
    font-size: 0.9rem;
}

.file-types {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.file-type-icon {
    width: 30px;
    height: 30px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-type-icon i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Analysis section */
.analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.analysis-icon-container {
    width: 40px;
    height: 40px;
    background: rgba(0, 106, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis-icon {
    font-size: 1.2rem;
    color: #006aff;
}

.analysis-title {
    font-weight: 600;
    color: #006aff;
}

.analysis-content {
    background: rgba(0, 106, 255, 0.05);
    border: 1px solid rgba(0, 106, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.analysis-line {
    height: 8px;
    width: 70%;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.analysis-line:nth-child(2) {
    width: 90%;
}

.analysis-line:nth-child(3) {
    width: 60%;
}

.keyword-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.keyword-chip {
    background: rgba(0, 106, 255, 0.15);
    color: #006aff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.keyword-chip:nth-child(2) {
    animation-duration: 2.5s;
}

.keyword-chip:nth-child(3) {
    animation-duration: 1.8s;
}

.keyword-chip:nth-child(4) {
    animation-duration: 2.2s;
}

.ai-insight {
    font-size: 0.9rem;
    padding: 10px;
    border-left: 3px solid #006aff;
    background: rgba(0, 106, 255, 0.05);
}

.insight-label {
    font-weight: 600;
    color: #006aff;
}

.insight-text {
    color: var(--text-secondary);
}

/* Optimization section */
.optimization-circle-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
}

.optimization-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.optimization-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0%, var(--accent) 65%, rgba(255,255,255,0.1) 65%, rgba(255,255,255,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.optimization-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.optimization-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.optimization-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.optimization-bubbles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.optimization-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.optimization-bubble.code {
    top: 10%;
    right: 0;
    width: 40px;
    height: 40px;
}

.optimization-bubble.database {
    bottom: 20%;
    left: 0;
    width: 35px;
    height: 35px;
    animation-duration: 2.5s;
    animation-delay: 0.3s;
}

.optimization-bubble.server {
    top: 30%;
    left: 10%;
    width: 30px;
    height: 30px;
    animation-duration: 3.5s;
    animation-delay: 0.5s;
}

.bubble-icon {
    color: var(--accent);
    font-size: 0.9rem;
}

.optimization-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Review section */
.review-header {
    background: rgba(0, 106, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 106, 255, 0.2);
}

.review-title {
    font-weight: 600;
    color: #006aff;
}

.review-actions {
    display: flex;
    gap: 8px;
}

.review-action-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(0, 106, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon {
    color: #006aff;
    font-size: 0.7rem;
}

.review-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.suggestion-item {
    margin-bottom: 15px;
    border-left: 3px solid #006aff;
    padding-left: 15px;
}

.suggestion-item:last-child {
    margin-bottom: 0;
}

.suggestion-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.suggestion-info {
    flex: 1;
}

.suggestion-type {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.suggestion-comparison {
    display: flex;
    margin-top: 5px;
}

.suggestion-old {
    flex: 1;
    padding-right: 10px;
}

.suggestion-new {
    flex: 1;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.suggestion-text {
    font-size: 0.8rem;
    margin: 0;
}

.suggestion-text.strikethrough {
    color: #ff4545;
    text-decoration: line-through;
}

.suggestion-text.highlight {
    color: var(--accent);
}

.suggestion-action {
    margin-left: 10px;
}

.suggestion-btn {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggestion-icon {
    color: var(--accent);
    font-size: 0.6rem;
}

.suggestion-explanation {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Export section */
.export-complete {
    margin-bottom: 2rem;
}

.export-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.export-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.export-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.export-stat {
    text-align: center;
}

.export-stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.2rem;
}

.export-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.export-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.export-btn.pdf {
    background: var(--accent);
    color: white;
}

.export-btn.word {
    background: rgba(0, 106, 255, 0.8);
    color: white;
}

.export-btn.txt {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.feature-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    position: relative;
    background: var(--card-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-header {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.feature-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(0, 106, 255, 0.8) 100%);
    opacity: 0.7;
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.feature-body {
    padding: 25px;
}

.feature-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-benefit {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-benefit:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    color: var(--accent);
    margin-top: 3px;
}

/* Pricing section */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    position: relative;
}

.pricing-card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.5), rgba(0, 106, 255, 0.5));
    z-index: -1;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
}

.pricing-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(90deg, #2E7D32 0%, #81C784 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text.blue {
    background: linear-gradient(90deg, #006aff 0%, #66a6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.full-width {
    width: 100%;
    text-align: center;
    display: block;
}

.pricing-body {
    padding: 30px;
}

.pricing-features-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pricing-feature {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-feature:last-child {
    margin-bottom: 0;
}

.pricing-feature.disabled {
    color: var(--text-secondary);
}

.feature-included {
    color: var(--accent);
    margin-top: 5px;
}

.feature-included.blue {
    color: #006aff;
}

.feature-excluded {
    color: #ff4545;
    margin-top: 5px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.toggle-label {
    color: var(--text-secondary);
}

.toggle-label.active {
    color: var(--accent);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 30px;
    padding: 3px;
    cursor: pointer;
}

.toggle-knob {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.discount-badge {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

.enterprise-cta {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.enterprise-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.enterprise-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials section */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-prev {
    margin-right: 10px;
}

.carousel-prev i,
.carousel-next i {
    color: var(--text-secondary);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    margin: 0;
    color: var(--text-primary);
}

.author-role {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-body {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.rating-star {
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.testimonial-quote {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--accent);
}

.testimonial-result {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.result-value {
    color: var(--accent);
    font-weight: 600;
}

/* FAQ section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-text {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-toggle {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.faq-answer.hidden {
    display: none;
}

.answer-text {
    color: var(--text-secondary);
}

/* CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(0, 106, 255, 0.1) 100%);
    z-index: 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.cta-statistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Contact section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.info-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-item {
    align-items: flex-start;
    justify-content: flex-start;
}


.contact-icon {
    color: var(--accent);
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.contact-value {
    margin: 0;
    color: var(--text-secondary);
}

.social-links {
    margin-top: 3rem;
}

.social-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
}

.form-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

@media screen and (max-width: 1111px) {
    .stats-grid {
        grid-template-areas:
            "red green"
            "double double";
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid .double-column {
        max-width: 100%;
        grid-area: double;
    }
}

/* Media queries for mobile responsiveness */
@media screen and (max-width: 768px) {
    .hero-tag {
        margin: 0;
        margin-bottom: 20px;
    }

    .hero-metrics {
        gap: 0;
    }


    .features-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px; /* Space for scrollbar */
    }
    .feature-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: start;
        margin-right: 15px;
        height: auto;
    }

        .feature-card:last-child {
            margin-right: 0;
        }


    /* Custom scrollbar styling */
    .features-grid::-webkit-scrollbar {
        height: 6px;
        background-color: transparent;
    }

    .features-grid::-webkit-scrollbar-thumb {
        background-color: rgba(46, 125, 50, 0.3);
        border-radius: 6px;
    }

    .features-grid::-webkit-scrollbar-track {
        background-color: transparent;
    }

    /* Firefox */
    .features-grid {
        scrollbar-width: thin;
        scrollbar-color: rgba(46, 125, 50, 0.3) transparent;
    }



    .pricing-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
        max-width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 10px 30px;
        margin: 0 -10px;
        position: relative;
        height: 530px;
        overflow-y: hidden;
        touch-action: pan-x;
    }

        /* Hide scrollbar but keep functionality */
        .pricing-cards::-webkit-scrollbar {
            display: none;
        }

    .pricing-cards {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pricing-card {
        flex: 0 0 calc(80% - 20px);
        min-width: 260px;
        max-width: 280px;
        height: 450px;
        background: var(--card-bg);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 0 5px;
        scroll-snap-align: center;
        position: relative;
        opacity: 0.8;
        transform: scale(0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }

        .pricing-card.featured {
            transform: scale(0.95);
        }

        .pricing-card.active {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

    /* Adjust card interior spacing */
    .pricing-header {
        padding: 20px;
        flex-shrink: 0;
    }

    .pricing-body {
        padding: 20px;
        flex: 1;
        overflow-y: auto;
        mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
        scrollbar-width: none;
    }

        .pricing-body::-webkit-scrollbar {
            display: none;
        }

    /* Navigation dots for carousel */
    .carousel-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--text-secondary);
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }

        .carousel-dot.active {
            background-color: var(--accent);
            opacity: 1;
        }

    /* Pricing badges adjustments */
    .pricing-badge {
        right: 20px;
    }

    /* Add swipe hint indicator */
    .swipe-hint {
        text-align: center;
        color: var(--text-secondary);
        font-size: 0.8rem;
        margin-top: 10px;
        opacity: 0.7;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .swipe-icon {
        display: inline-block;
        animation: swipeAnimation 2s infinite;
    }

    @keyframes swipeAnimation {
        0% {
            transform: translateX(-5px);
            opacity: 0.5;
        }

        50% {
            transform: translateX(5px);
            opacity: 1;
        }

        100% {
            transform: translateX(-5px);
            opacity: 0.5;
        }
    }

    .stats-grid .double-column {
        max-width: 300px;
    }


    /* Override alternate row direction */
    .process-step.reverse {
        flex-direction: column !important;
    }

    /* Fix hero text */
    .hero-title {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .hero-description {
        text-align: center !important;
        font-size: 1rem !important;
    }

    /* Center metrics */
    .hero-metrics, .hero-buttons {
        justify-content: center !important;
    }

    .metric {
        width: 100% !important;
    }

    /* Fix process layout */
    .flow-line {
        display: none !important;
    }

    .step-number {
        position: relative !important;
        margin: 0 auto 20px auto !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stat-card {
        width: 85%;
        max-width: 300px;
    }

        .stat-card:nth-child(odd) {
            align-self: flex-start;
        }

        .stat-card:nth-child(even) {
            align-self: flex-end;
        }


    /* Stack content */
    .prometheus-hero-text,
    .prometheus-hero-visual,
    .step-content,
    .step-visual,
    .pricing-card,
    .testimonial-card,
    .contact-info,
    .contact-form {
        min-width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Fix testimonials */
    .testimonial-card {
        flex: 0 0 100% !important;
    }

    /* Fix pricing cards */
    .pricing-card.featured {
        transform: none !important;
        scale: 1 !important;
    }

    /* Resize fonts */
    .section-title {
        font-size: 1.8rem !important;
    }

    .step-title {
        font-size: 1.5rem !important;
        text-align: center !important;
    }

    /* Better form elements */
    .form-input, 
    .form-textarea, 
    button, 
    .btn, 
    .btn-outline {
        font-size: 16px !important;
        min-height: 44px !important;
        width: 100% !important;
    }


    .pricing-card:hover,
    .pricing-card:focus {
        transform: none !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    }

    /* This targets devices without hover capability (touchscreens) and prevents unwanted hover styling from interfering with your carousel experience. */
    .btn:hover,
    .btn-outline:hover,
    .btn:focus,
    .btn-outline:focus {
        transform: none !important;
        filter: none !important;
    }
}