:root {
    --primary: #f50c23;
    --primary-dark: #f50c23;
    --accent: #ff9900;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-dark: #0f172a;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: black;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a,
a:visited {
    color: white !important;
}

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

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

/* 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);
}

#calls-to-actionFixedBottomInner {
    background-color: unset;
}

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


/* Hero Image Placeholder */
.hero-media-wrapper {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    background-color: #000;
}



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

/* 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: 50px;
}

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

.section-title p {
    font-size: 1.125rem;
    color: #64748b;
}

.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%;
    border-collapse: collapse;
    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,
.container h2,
#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(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 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;
}

.feature-card p {
    color: #64748b;
    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;
}

/* 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;
}