
:root {
    --bg-color: #0b0c10;
    --bg-darker: #050608;
    --text-main: #f0f0f0;
    --text-muted: #a0a5af;
    
    --primary: #e63946;
    --primary-glow: rgba(230, 57, 70, 0.4);
    --secondary: #1d1e22;
    
    --glass-bg: rgba(30, 32, 40, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --success: #2a9d8f;
    --danger: #e63946;
    --gold: #f4a261;
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-red { color: var(--danger); }
.text-green { color: var(--success); }
.highlight { color: var(--primary); }
.bg-darker { background-color: var(--bg-darker); }
h1, h2, h3, h4, .logo {
    font-family: var(--font-display);
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: #ff4a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: #2a2c33;
    transform: translateY(-2px);
}

.full-width { width: 100%; }
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, rgba(11,12,16,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.section-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.section-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}
.comparison-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.comparison-card {
    flex: 1;
    max-width: 450px;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: var(--secondary);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.comparison-card.glow-border {
    border-color: var(--primary-glow);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.1);
    background: linear-gradient(180deg, rgba(30,32,40,0.8) 0%, rgba(20,22,28,0.8) 100%);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.software-cutting .card-icon {
    color: var(--primary);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.comparison-list li i {
    margin-top: 0.3rem;
    font-size: 1.1rem;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
    z-index: 10;
    font-size: 1.2rem;
    color: var(--text-muted);
}
.rankings-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ranking-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ranking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.rank-1 {
    border: 1px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.05);
}

.rank-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
}

.rank-badge.alt {
    background: #3a3f4a;
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.ranking-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating-text {
    color: white;
    font-weight: 600;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.ranking-score {
    text-align: right;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
}

.rank-1 .score-number {
    color: var(--primary);
}

.ranking-card:not(.rank-1) .score-number {
    color: var(--text-main);
}

.score-max {
    color: var(--text-muted);
    font-size: 1rem;
}

.review-text {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag i {
    color: var(--primary);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros h4 { color: var(--success); }
.cons h4 { color: var(--danger); }

.pros ul, .cons ul {
    list-style: none;
}

.pros ul li, .cons ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pros ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cons ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.detailed-review {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.detailed-review h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.highlight-list strong {
    color: white;
}
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(230,57,70,0.1) 0%, rgba(11,12,16,0) 60%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-highlight-box {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30,32,40,0.8), rgba(20,22,28,0.9));
    border: 1px solid var(--primary-glow);
}

.cta-highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-highlight-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
details.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
details.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
}
summary.faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary.faq-question::-webkit-details-marker {
    display: none;
}
summary.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
details.faq-item[open] summary.faq-question::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

#form-success {
    display: none;
    background: rgba(42, 157, 143, 0.1);
    color: var(--success);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--success);
    margin-top: 1rem;
}
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: white;
}

.disclosure-text {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .hero-layout, .features-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto 3rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }

    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-card {
        max-width: 100%;
    }
    
    .vs-badge {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        margin: 1rem auto;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .ranking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .ranking-score {
        text-align: left;
    }
}

