/* Final Boss Technologies - Enterprise Styling */

:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --secondary-color: #2d3748;
    --accent-color: #00a0dc;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text {
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* HERO SECTION */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f7fafc 0%, #e6f2ff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-bullets {
    display: grid;
    gap: 24px;
}

.bullet-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.bullet-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* HERO VISUAL */
.hero-visual {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.diagram-node {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--border-color);
    width: 100%;
}

.diagram-node.rail {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.diagram-node small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.diagram-arrow {
    font-size: 24px;
    color: var(--text-light);
}

.diagram-block {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 48px;
}

/* WHAT WE DO */
.what-we-do {
    background: var(--bg-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.content-block p strong {
    color: var(--text-dark);
}

/* PRODUCTS */
.products {
    background: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.product-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.card-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* DEMOS */
.demos {
    background: var(--bg-white);
}

.demo-grid {
    display: grid;
    gap: 30px;
    margin-top: 48px;
}

.demo-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    position: relative;
}

.demo-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.demo-badge {
    background: var(--success-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.demo-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.demo-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.demo-steps {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.demo-steps h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.demo-steps ol {
    margin-left: 20px;
}

.demo-steps li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.demo-note {
    margin-top: 16px;
    font-style: italic;
    color: var(--text-light);
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.step {
    text-align: center;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.workflow-diagram {
    margin-top: 48px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.workflow-node {
    background: var(--bg-light);
    padding: 20px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    text-align: center;
}

.workflow-node.highlight {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.workflow-node small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.workflow-arrow {
    font-size: 24px;
    color: var(--text-light);
}

.workflow-block-path {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.blocked-arrow {
    display: block;
    font-size: 24px;
    color: #dc2626;
}

.blocked-text {
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
}

/* WHY NOW */
.why-now {
    background: var(--bg-white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.reason h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CREDIBILITY */
.credibility {
    background: var(--bg-light);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.cred-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cred-block ul {
    list-style: none;
}

.cred-block li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cred-block li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 20px;
}

.patent-note {
    margin-top: 20px;
    font-style: italic;
}

.callout {
    background: var(--primary-color);
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.callout p {
    font-size: 18px;
    margin: 0;
}

/* PRICING */
.pricing {
    background: var(--bg-white);
}

.pricing-table {
    max-width: 900px;
    margin: 48px auto 0;
}

.pricing-row {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 32px;
    align-items: start;
}

.pricing-row.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.pricing-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.outcome {
    font-style: italic;
    color: var(--text-dark);
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 32px;
    font-style: italic;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CONTACT */
.contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 12px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* FORM */
.contact-form {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.checkbox-group {
    display: grid;
    gap: 8px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* RESOURCES */
.resources {
    background: var(--bg-light);
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.resource-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,102,204,0.12);
    transform: translateY(-4px);
}

.resource-card h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 20px;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.resource-card table {
    border-collapse: collapse;
}

.resource-card table tr {
    border-bottom: 1px solid var(--border-color);
}

.resource-card table td {
    padding: 8px 4px;
}

/* FOOTER */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    color: white;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-legal {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
    line-height: 1.8;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 8px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content,
    .content-grid,
    .product-grid,
    .steps-grid,
    .credibility-grid,
    .reasons-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .nav-menu {
        display: none;
    }

    .pricing-row {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .workflow-visual {
        flex-direction: column;
    }
}

/* 8MS VETO BANNER */
.veto-banner {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px 20px;
    border-bottom: 3px solid #00ff88;
    position: relative;
    overflow: hidden;
}

.veto-container {
    max-width: 1400px;
    margin: 0 auto;
}

.veto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.veto-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    border: 2px solid #00ff88;
}

.veto-video video {
    width: 100%;
    height: auto;
    display: block;
}

.veto-text {
    color: #ffffff;
}

.veto-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.veto-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: #cccccc;
}

.btn-veto {
    background: #00ff88;
    color: #000000;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-veto:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

@media (max-width: 968px) {
    .veto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .veto-headline {
        font-size: 3rem;
    }
    
    .veto-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .veto-banner {
        padding: 40px 20px;
    }
    
    .veto-headline {
        font-size: 2.5rem;
    }
}
