:root {
    --mkt-orange: #ff6a00;
    --mkt-blue: #4a90e2;
    --mkt-dark: #0a0b10;
}

/* Container and Section Setup */
.mkt-hero {
    background-color: #0d1117; /* The exact dark navy/black from screenshot */
    padding-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.mkt-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

/* Badge Styling */
.mkt-badge-wrapper {
    margin-bottom: 30px;
}

.mkt-badge {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.mkt-badge .dot {
    width: 6px;
    height: 6px;
    background: #4a90e2;
    border-radius: 50%;
}

/* Typography */
.mkt-hero-text h1 {
    color: #ffffff;
    font-size: 64px; /* Heavy, bold look */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.blue-text {
    color: #4a90e2; /* The exact blue from your screenshot */
}

.mkt-desc {
    color: #a0a8b1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Buttons */
.mkt-hero-btns {
    display: flex;
    gap: 15px;
}

.btn-orange {
    background: #ff6a00; /* Jurysoft Signature Orange */
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-orange:hover {
    background: #e55e00;
    transform: translateY(-2px);
}

.btn-glass {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid #333c4d;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.05);
    border-color: #ffffff;
}

/* Hero Image with Border Radius */
.mkt-hero-visual img {
    width: 100%;
    border-radius: 24px; /* Matches the rounded corners in image */
    display: block;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .mkt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mkt-hero-btns {
        justify-content: center;
    }
    .mkt-hero-text h1 {
        font-size: 42px;
    }
}

/* Intro */
.mkt-intro {
    padding: 80px 0;
    background: #fff;
    color: #000;
}

.mkt-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mkt-sub {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Solutions Grid */
.mkt-solutions {
    padding: 100px 0;
}

.mkt-section-head {
    margin-bottom: 50px;
}

.mkt-section-head h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.mkt-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution-card {
    background: #16181d;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.4s;
}

.solution-card:hover .card-img img {
    filter: grayscale(0);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    min-height: 50px;
}

.card-content p {
    font-size: 14px;
    opacity: 0.7;
}

/* Ecosystem Box */
.mkt-ecosystem {
    padding: 100px 0;
    background: #f8f9fa;
    color: #000;
}

.ecosystem-box {
    background: var(--mkt-orange);
    border-radius: 30px;
    padding: 60px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.stack-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 45%;
}

.stack-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
}

.sync-icon {
    background: #16181d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.stack-right {
    width: 45%;
}

.hub-card {
    background: #fff;
    height: 160px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mkt-blue);
}

.hub-card i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #000;
}

/* Transform Comparison */
.mkt-transform {
    padding: 100px 0;
}

.mkt-transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.transform-card {
    background: #fff;
    color: #000;
    border-radius: 25px;
    padding: 40px;
    position: relative;
}

.transform-card.modern {
    background: #1a233a;
    color: #fff;
}

.transform-card img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
    height: 300px;
    object-fit: cover;
}

.label {
    font-size: 12px;
    font-weight: 700;
    color: var(--mkt-orange);
}

.label.blue {
    color: var(--mkt-blue);
}

.badge-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--mkt-blue);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 100px 0;
    border-top: 1px solid #333;
}

.stat-box h3 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 15px;
}

.stat-box h3.accent {
    color: var(--mkt-orange);
}

.stat-box h3.blue {
    color: var(--mkt-blue);
}

.stat-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.6;
}

/* CTA Card */
.mkt-cta {
    padding: 100px 0;
    background-color: #0d1117; /* Matches Jurysoft dark theme */
}

.cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95); /* Very bright white base */
    border-radius: 60px; /* High border radius from screenshot */
    padding: 80px 100px;
    overflow: hidden;
    color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* The Colorful Blobs in the background */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
}

.cta-blob-1 {
    width: 400px;
    height: 400px;
    background: #4a90e2; /* Blue glow */
    bottom: -150px;
    right: -50px;
}

.cta-blob-2 {
    width: 300px;
    height: 300px;
    background: #ff6a00; /* Subtle orange/pink hint */
    top: -100px;
    left: -50px;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 2; /* Ensures text is above blobs */
    max-width: 700px;
}

.cta-card h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563; /* Muted gray-text */
    margin-bottom: 40px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 18px;
}

.cta-list .icon-wrap {
    color: #4a90e2; /* The specific blue from screenshot checkmarks */
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .cta-card {
        padding: 50px 30px;
        border-radius: 30px;
    }
    .cta-card h2 {
        font-size: 32px;
    }
    .cta-blob {
        display: none; /* Simplify for mobile performance */
    }
    .mkt-solutions-grid{
        display:block; 
    }
    .mkt-transform-grid {
    display: block;
    }
    .stats-grid {
    display: block;
    }
    .mkt-cta {
   padding: unset;
    }
    .hub-card {
        display: none;
    }
}