/* CutForge Specific Styles */

/* Base Overrides for Dark Classic Theme */
body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
}

.nav-links a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 99px;
    transition: transform 0.2s;
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
}

.video-placeholder {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0.7;
    font-size: 0.9rem;
    color: #888;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Problem / Solution */
.problem-solution {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media(max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
}

.col-problem ul li, .col-solution ul li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #ccc;
}

.col-problem h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.col-solution h2 {
    color: #4ade80;
    margin-bottom: 1.5rem;
}

/* Features */
.features-section {
    position: relative;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

@media(max-width: 900px) {
    .feature-block, .feature-block.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
    }
    .feature-details {
        text-align: left;
    }
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-badge.coming-soon {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
}

.feature-details li {
    margin-bottom: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-image {
    flex: 1;
}

/* Workflow */
.workflow-section {
    background: #050505;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-plan {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-plan.popular {
    background: rgba(30, 40, 60, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: #fff;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.billing-note {
    color: #4ade80;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2rem;
    flex: 1;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: #3b82f6;
}

.full-width {
    width: 100%;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 3px solid #3b82f6;
}

.use-case-card h3 {
    margin-bottom: 1rem;
}

.gain-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.comparison-table th, .comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.comparison-table .highlight {
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
    color: #fff;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

@media(max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.faq-item p {
    color: #94a3b8;
}

/* Footer CTA */
.final-cta {
    background: linear-gradient(to top, rgba(30,30,30,1), rgba(0,0,0,0));
}

.guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}
