/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
    height: 72px;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
}

nav .nav-container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-size: 13px;
    transition: color 0.2s;
}

nav .logo:hover {
    color: #2563eb;
}

nav .nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

nav .nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: normal;
}

nav .nav-links a:hover {
    color: #000;
}

nav .nav-links .separator {
    margin: 0 20px;
    color: #e5e5e5;
    font-weight: 300;
}

nav .nav-links .cta-button {
    margin-left: 12px;
    padding: 10px 20px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

nav .nav-links .cta-button:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* Main Content Container */
main {
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 32px 0 32px;
    background-color: #fff;
    min-height: calc(100vh - 72px);
}

/* Typography */
h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #000;
    max-width: 800px;
}

h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 64px;
    letter-spacing: 0.5px;
    color: #000;
    position: relative;
}

h2:first-child {
    margin-top: 0;
}

h2:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, transparent);
}

.subheading {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.5;
    color: #4b5563;
    font-weight: 400;
    max-width: 680px;
}

.meta-line {
    font-size: 13px;
    margin-bottom: 28px;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-line:before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #2563eb;
    border-radius: 50%;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

a:hover {
    color: #1e40af;
}

a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
    border-radius: 2px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 0;
    margin-top: 80px;
}

.contact-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #2563eb;
}

.contact-box h2 {
    color: white;
    margin-bottom: 32px;
    margin-top: 0;
}

.contact-box h2::after {
    background: linear-gradient(90deg, #2563eb, #10b981);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    line-height: 1.6;
}

.contact-item a {
    color: white;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #2563eb;
    text-underline-offset: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #2563eb;
}

.response-time {
    font-weight: 500;
    color: #10b981;
    font-size: 15px;
    line-height: 1.6;
}

/* Paragraphs and Sections */
p {
    margin-bottom: 24px;
    white-space: pre-line;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

section {
    margin-bottom: 64px;
}

section:first-child {
    margin-bottom: 64px;
}

section:last-child {
    margin-bottom: 0;
}

/* Hero Section */
.hero-meta {
    font-size: 13px;
    margin-bottom: 28px;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
}

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

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
}

.hero-cta.primary {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

.hero-cta.primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.hero-cta.secondary {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.hero-cta.secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.hero-cta:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
}

/* Stats Line */
.stats-line {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: linear-gradient(to right, #fafafa, #ffffff, #fafafa);
    position: relative;
}

.stats-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1) 50%, transparent);
}

/* FAQ */
.faq-item {
    margin-bottom: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-q {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    list-style: none;
    padding: 24px 0;
    margin: 0;
    user-select: none;
    transition: all 0.2s;
    line-height: 1.6;
}

.faq-q:hover {
    color: #2563eb;
    padding-left: 8px;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::marker {
    display: none;
}

.faq-q::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 18px;
    margin-right: 16px;
    color: #2563eb;
    font-weight: 600;
    background: #f3f4f6;
    border-radius: 4px;
    transition: all 0.2s;
}

.faq-item[open] .faq-q::before {
    content: "−";
    background: #2563eb;
    color: white;
    transform: rotate(90deg);
}

.faq-item[open] {
    background: #fafafa;
    padding: 0 20px 24px 20px;
    margin: 0 -20px;
}

.faq-a {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    padding: 0 0 24px 30px;
    margin: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    margin: 28px 0;
}

th {
    background: linear-gradient(180deg, #1a1a1a, #000);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #000;
    border-bottom: 2px solid #2563eb;
    line-height: 1.6;
}

th:first-child {
    width: 30%;
}

td {
    padding: 18px 20px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

td:first-child {
    font-weight: 500;
    color: #000;
}

tbody tr {
    transition: all 0.15s;
}

tbody tr:nth-child(odd) td {
    background-color: #fff;
}

tbody tr:nth-child(even) td {
    background-color: #f9fafb;
}

tbody tr:hover td {
    background-color: #eff6ff;
}

tbody tr:hover td:first-child {
    border-left: 3px solid #2563eb;
}

/* Lists */
ul {
    list-style: none;
    margin: 24px 0;
}

ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    transition: padding-left 0.2s;
}

ul li:hover {
    padding-left: 32px;
}

ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
}

ul li:hover:before {
    transform: translateX(4px);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.column {
    border: 1px solid #e5e5e5;
    padding: 32px;
    background-color: #fff;
    position: relative;
    transition: all 0.2s;
}

.column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.column:last-child::before {
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

.column:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.column h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #000;
    line-height: 1.6;
}

.column:first-child h3 {
    color: #10b981;
}

.column:last-child h3 {
    color: #2563eb;
}

.column ul {
    margin: 0;
}

.column ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Process Steps */
.process-step {
    margin-bottom: 20px;
    padding: 20px 24px;
    border-left: 4px solid #2563eb;
    background-color: #f8fafc;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
    border-left-color: #10b981;
}

.process-step:before {
    content: "";
    position: absolute;
    left: -6px;
    top: 20px;
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
}

.process-step:last-child:before {
    background-color: #10b981;
}

.process-step p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

/* Placeholder Boxes */
.placeholder {
    border: 2px dashed #d1d5db;
    padding: 60px;
    margin: 24px 0;
    background-color: #f9fafb;
    text-align: center;
    color: #6b7280;
}

/* Pricing Specific */
.pricing-header {
    margin-bottom: 48px;
}

.pricing-header h1 {
    margin-bottom: 16px;
}

.pricing-intro {
    margin-bottom: 0;
}

.pricing-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Calculator Styles */
.calculator-container {
    border: 1px solid #e5e5e5;
    padding: 0;
    margin: 32px 0;
    background-color: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-container h2 {
    margin: 0;
    padding: 16px 20px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.calculator-subtitle {
    padding: 16px 20px;
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.calculator-input-section {
    padding: 0 20px 16px 20px;
}

.calculator-input-section label {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
    font-weight: bold;
    color: #000;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 28px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 16px;
    color: #000;
    transition: border-color 0.15s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
}

.input-wrapper input::placeholder {
    color: #ccc;
}

.service-fee-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f5f5f5;
    margin: 0 0 16px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.fee-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    color: #000;
}

.fee-amount {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.fee-breakdown {
    padding: 0 20px 16px 20px;
}

.fee-breakdown h3 {
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.breakdown-table {
    margin-bottom: 12px;
    background-color: #fff;
    font-size: 12px;
}

.breakdown-table th {
    background-color: #000;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
}

.breakdown-table td {
    font-size: 11px;
    padding: 8px 10px;
}

.breakdown-table .no-data {
    text-align: center;
    color: #999;
    font-style: normal;
    padding: 20px 10px;
    font-size: 12px;
}

.custom-pricing-note {
    margin-top: 16px;
    padding: 16px;
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-left: 4px solid #f59e0b;
}

.pricing-tiers {
    padding: 16px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #ddd;
}

.pricing-tiers h3 {
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #000;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.tier-item {
    border: 1px solid #ddd;
    padding: 12px 8px;
    background-color: #fff;
    text-align: center;
    transition: border-color 0.15s;
}

.tier-item:hover {
    border-color: #2563eb;
}

.tier-range {
    font-size: 10px;
    margin-bottom: 4px;
    color: #666;
}

.tier-rate {
    font-size: 16px;
    font-weight: bold;
    color: #2563eb;
}

.minimum-fee-note {
    font-size: 10px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    nav {
        height: auto;
        padding: 0;
    }

    nav .nav-container {
        flex-direction: row;
        padding: 20px 24px;
        align-items: center;
        gap: 0;
    }

    nav .logo {
        font-size: 14px;
    }

    nav .nav-links {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0;
    }

    nav .nav-links a:not(.cta-button) {
        font-size: 13px;
    }

    nav .nav-links .separator {
        margin: 0 12px;
    }

    nav .nav-links .cta-button {
        margin-left: 12px;
        padding: 8px 14px;
        font-size: 12px;
    }

    main {
        max-width: none;
        padding: 40px 24px 0 24px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    h2 {
        font-size: 18px;
        margin-top: 48px;
        margin-bottom: 20px;
    }

    .subheading {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-meta {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta {
        text-align: center;
    }

    .stats-line {
        font-size: 13px;
        padding: 16px 0;
    }

    .faq-item {
        padding-bottom: 20px;
    }

    .faq-q {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-a {
        font-size: 15px;
        padding: 0 0 20px 30px;
    }

    .contact-section {
        margin-top: 64px;
    }

    .contact-box {
        padding: 40px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 16px;
    }

    section {
        margin-bottom: 48px;
    }

    section:first-child {
        margin-bottom: 48px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .column {
        padding: 20px;
    }

    .table-wrapper {
        overflow-x: auto;
        margin: 20px -24px;
        padding: 0 24px;
    }

    table {
        min-width: 600px;
    }

    th {
        padding: 12px 14px;
        font-size: 10px;
    }

    td {
        padding: 14px;
        font-size: 13px;
    }

    .calculator-container {
        margin: 32px 0;
    }

    .calculator-container h2 {
        padding: 20px 24px;
        font-size: 16px;
    }

    .calculator-subtitle {
        padding: 16px 24px 20px 24px;
        font-size: 13px;
    }

    .calculator-input-section {
        padding: 0 24px 20px 24px;
    }

    .input-wrapper input {
        padding: 16px 16px 16px 40px;
        font-size: 18px;
    }

    .currency-symbol {
        left: 16px;
        font-size: 18px;
    }

    .service-fee-display {
        padding: 20px 24px;
    }

    .fee-amount {
        font-size: 28px;
    }

    .fee-breakdown {
        padding: 0 24px 24px 24px;
    }

    .pricing-tiers {
        padding: 24px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tier-item {
        padding: 16px;
    }

    .tier-rate {
        font-size: 20px;
    }

    .process-step {
        padding: 18px 20px;
        margin-bottom: 16px;
    }

    ul li {
        font-size: 13px;
        padding-left: 24px;
        margin-bottom: 12px;
    }
}

/* Audit Form Styles */
.audit-form-section {
    max-width: 640px;
    margin: 0 auto;
}

.audit-form {
    margin-top: 48px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 14px;
    color: #1f2937;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.field-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.checkbox-group {
    margin-top: 32px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 32px;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #1e40af;
}

.form-footer {
    margin-top: 24px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ROI Calculator Styles */
.roi-link {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}

.roi-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.roi-link a:hover {
    color: #1e40af;
}

.roi-calculator-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e5e5e5;
    border-left: 4px solid #2563eb;
    padding: 40px 48px;
    margin: 64px 0;
    position: relative;
}

.roi-calculator {
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
}

.calculator-section:first-child {
    border-left: 4px solid #2563eb;
}

.results-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    border-left: 4px solid #10b981;
}

.calculator-section:last-child {
    border-left: 4px solid #f59e0b;
}

.calculator-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #000;
}

.results-section h3 {
    color: #fff;
}

.calculator-section h4 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 24px 0 16px 0;
    color: #000;
}

.results-section h4 {
    color: #9ca3af;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 8px;
}

.input-help {
    font-size: 10px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.4;
}

.service-options {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-grid input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.calculation-breakdown {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.breakdown-label {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.breakdown-value {
    color: #fff;
    font-weight: 600;
}

.main-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.result-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card.current {
    border-color: rgba(255, 255, 255, 0.2);
}

.result-card.optimized {
    border-color: #10b981;
}

.result-number {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.result-card.current .result-number {
    color: #fff;
}

.result-card.optimized .result-number {
    color: #10b981;
}

.result-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.revenue-projection {
    margin-bottom: 24px;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-item:last-child {
    border-bottom: none;
}

.revenue-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 -16px;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #10b981;
}

.revenue-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.revenue-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.revenue-item.highlight .revenue-value {
    color: #10b981;
}

.projection-timeline {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projection-timeline h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 16px;
    font-weight: 600;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.timeline-item {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.timeline-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 4px;
}

.timeline-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.cac-results {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.cac-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.cac-item:last-child {
    border-bottom: none;
}

.cac-item.highlight {
    background: #fef3c7;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #f59e0b;
}

.cac-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    font-weight: 600;
}

.cac-value {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.cac-item.highlight .cac-value {
    color: #f59e0b;
}

.calculator-context {
    margin-top: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.confidence-level {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
}

.confidence-label {
    font-weight: 600;
    color: #000;
}

.confidence-value {
    font-weight: 600;
    color: #10b981;
}

.confidence-note {
    color: #6b7280;
    font-style: italic;
}

.service-value-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    margin: 32px 0;
}

.service-value-summary h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.value-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.value-amount {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.value-item.highlight .value-amount {
    color: #10b981;
}

.break-even-note {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .value-item {
        padding: 12px;
    }
    
    .value-amount {
        font-size: 16px;
    }
}

/* Enhanced ROI Calculator Styles */
.calculator-section {
    padding: 64px 0;
    background: #fafafa;
}

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

.inputs-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 24px;
    position: relative;
}

.inputs-panel.current {
    border-left: 4px solid #ef4444;
}

.inputs-panel.current h2 {
    color: #ef4444;
}

.inputs-panel.optimized {
    border-left: 4px solid #10b981;
}

.inputs-panel.optimized h2 {
    color: #10b981;
}

.inputs-panel h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    margin-top: 0;
    color: #000;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.input-group {
    position: relative;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 12px;
}

.input-display {
    font-size: 32px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e5e5e5;
    border: none;
    outline: none;
    -webkit-appearance: none;
    margin: 8px 0;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2563eb;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #2563eb;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.results-panel {
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
}

.results-panel h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    color: #fff;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
}

.comparison-column.optimized {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.comparison-column h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #fff;
    text-align: center;
}

.comparison-column.current h3 {
    color: #9ca3af;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.metric-value {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.value-highlight {
    background: #10b981;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-amount {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

/* Mobile Responsive for Enhanced Layout */
@media (max-width: 768px) {
    .calculator-container {
        padding: 0 16px;
    }
    
    .inputs-panel,
    .results-panel,
    .roi-panel {
        padding: 24px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-item {
        margin: 0 12px;
    }
    
    .value-amount {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

.roi-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 32px;
}

.roi-panel h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    color: #000;
    text-align: center;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.roi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.roi-item.highlight {
    background: #fef3c7;
    border-color: #f59e0b;
}

.roi-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.roi-value {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.roi-item.highlight .roi-value {
    color: #f59e0b;
}

.break-even {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.break-even span {
    font-weight: 600;
    color: #000;
}

.cta-section {
    text-align: center;
    padding: 64px 32px;
    background: #f8fafc;
    border-top: 1px solid #e5e5e5;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.cta-section p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    display: inline-block;
}

.cta-button.primary {
    background-color: #2563eb;
    color: #fff;
}

.cta-button.primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.cta-button.secondary {
    background-color: #e5e7eb;
    color: #374151;
    border: 2px solid #d1d5db;
}

.cta-button.secondary:hover {
    background-color: #d1d5db;
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .calculator-container {
        padding: 0 16px;
    }
    
    .inputs-panel,
    .results-panel,
    .roi-panel {
        padding: 24px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-item {
        margin: 0 12px;
    }
    
    .value-amount {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

.roi-inputs {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.roi-input-group {
    position: relative;
}

.roi-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 12px;
}

.slider-value {
    font-size: 28px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #e5e5e5 0%, #2563eb 50%, #10b981 100%);
    border: none;
    outline: none;
    -webkit-appearance: none;
    margin: 8px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2563eb;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #2563eb;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.roi-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e5e5 20%, #e5e5e5 80%, transparent);
    margin: 32px 0;
}

.roi-results {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 3px solid #2563eb;
    padding: 32px;
    margin-top: 32px;
}

.roi-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.roi-result-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
}

.roi-value {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
}

.roi-result-item.current .roi-value {
    color: #fff;
}

.roi-result-item.optimized .roi-value {
    color: #10b981;
}

.roi-increase {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.roi-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin: 24px 0 0 0;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.roi-cta-section {
    text-align: center;
    margin: 80px 0;
}

.roi-cta-section h2 {
    margin-bottom: 16px;
}

.roi-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .roi-calculator-section {
        padding: 32px 24px;
        margin: 48px 0;
    }

    .calculator-section {
        padding: 24px;
        margin-bottom: 24px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .slider-value {
        font-size: 24px;
    }

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

    .main-results {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .result-number {
        font-size: 28px;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-value {
        font-size: 18px;
    }

    .roi-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .roi-cta-section {
        margin: 64px 0;
    }
}

