body {

    background-color: black;
    margin: 0;
    padding: 0;
}

a {
    color: white !important;
}

.greyP {
    color: #80848a !important;
}

#onBlack .testimonial-wrapper .testimonial-track .testimonial .testimonialText {
    color: white;
    background-color: transparent;
}

.section-first {
    padding-top: 0px !important;
}

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

.container p {
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero-badge {
    background-color: rgba(0, 102, 204, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 35px auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #475569;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #94a3b8;
    background-color: rgba(255, 255, 255, 0.05);
}

#divBottomCenter {
    background-color: var(--primary-dark);
}


/* Hero Image Placeholder */
.hero-media-wrapper {
    margin: 0px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-media-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

#evidenceImg {
    max-width: 1200px;
}

#heroImageTop {
    position: relative;
    width: 100%;
    height: auto;
}

#laptop-wrapper {
    position: relative;
    width: 95%;
    /* responsive width */
    max-width: 1280px;
    /* optional max width */
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    /* match your laptop image ratio */
    background: url('/images/macbook-pro-dark-shrunk-2.webp') no-repeat center / contain;
    /* laptop image */
}

.video-screen {
    position: absolute;
    top: 12%;
    /* adjust to match laptop screen */
    left: 10%;
    /* adjust to match laptop screen */
    width: 80%;
    /* width of laptop screen relative to wrapper */
    height: auto;
    /* height of laptop screen relative to wrapper */
    overflow: hidden;
}

/* Container must handle relative positioning */
.img-placeholder {
    position: relative;
    display: inline-block;
    /* or block if centered */
    overflow: visible !important;
}

/* Comparison Section */
.section-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.section-title p {
    font-size: 1.125rem;
}

.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    border: 1px solid var(--border-color);
}

table.comparison-table {
    width: 100%;
    text-align: left;
}

table.comparison-table th {
    background-color: #f1f5f9;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

table.comparison-table th.highlight {
    background-color: #e0f2fe;
    color: var(--primary-dark);
}

table.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

/* Value Props / Features Section */
.section-features {
    padding: 80px 0;
}

#builtForDiv h2,
#builtForDiv p,
#useOurDiv p {
    color: white;
    font-weight: bold;
}

.section-feature h2,
.section-feature {
    color: #000;
    font-weight: bold;
}

#useOurDiv {
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 100px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #e0f2fe;
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin: 0 0 8px;
}

.feature-card p {
    color: #64748b !important;
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonial / Social Proof */
.section-proof {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.quote-author {
    font-weight: 700;
    color: #38bdf8;
}

/* CTA Bottom */
.section-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.section-cta h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-cta p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.proof-box {
    border-radius: 8px;
    margin: 40px 0;
    margin-bottom: 0px;
    text-align: left;
    padding: 40px;
}

.proof-box h3 {
    color: #38bdf8;
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.proof-box-text {
    font-style: normal;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.proof-list {
    color: #cbd5e1;
    padding-left: 20px;
    margin: 0;
}

.proof-list li {
    margin-bottom: 10px;
}

.card-list {
    color: #64748b;
    font-size: 0.95rem;
    padding-left: 18px;
    margin-top: 10px;
}

.td-highlight {
    color: var(--primary-dark);
    font-weight: 700;
}

.section-features-compact {
    padding-top: 0;
}

.hero-media-text {
    color: #94a3b8;
    font-style: italic;
    padding: 40px 20px;
    margin: 0;
}

#evidenceImg {
    width: 100%;
}

.diagram-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    color: #e2e8f0;
}

.diagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

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

.diagram-column {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 6px;
    padding: 20px;
}

.diagram-column h4 {
    color: #38bdf8;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.diagram-column ul {
    margin: 0;
    padding-left: 18px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.diagram-column ul li {
    margin-bottom: 8px;
}

.diagram-column h4 {
    margin-bottom: 1rem !important;
}

ul li {
    color: #fff;
}

ul.card-list li {
    color: grey;
}

.textWhite {
    color: #ffffff !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.equipment-section {
    position: relative;
    width: fit-content;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 80px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 500px) {

    #pages-section {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    .proof-box,
    .diagram-card,
    .container {
        padding: 0px;
    }

}

@media only screen and (max-width: 450px) {

    .btn-primary {
        padding-left: 10px;
        padding-right: 1%;
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

#bottomSpacer {
    margin-bottom: 3rem;
}