/* Marketing Page Template Styles */

/* Container */
.marketing-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Columns Layout */
.marketing-hero-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .marketing-hero-columns {
        flex-direction: column;
        gap: 2px;
    }

    .marketing-hero-content,
    .marketing-sidebar {
        flex-basis: 100% !important;
    }
}

/* Left Content Column */
.marketing-hero-content {
    flex: 1;
}

/* Breadcrumb */
.marketing-breadcrumb {
    font-size: 14px;
    color: #71748e;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Inventory Tag */
.marketing-tag-wrapper {
    display: inline-block;
    margin-bottom: 16px;
}

.marketing-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FDE5E7;
    color: #ea2a3d;
    font-size: 14px !important;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 18px;
    margin: 0;
    line-height: 1.5;
}

.marketing-tag-icon {
    font-size: 14px;
    display: inline-block;
}

/* Main Heading */
.marketing-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #3f4155;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .marketing-heading {
        font-size: 32px;
    }
}

/* Description */
.marketing-description {
    font-size: 18px;
    line-height: 1.6;
    color: #71748e;
    margin: 0;
}

@media (max-width: 768px) {
    .marketing-description {
        font-size: 16px;
    }
}

/* Buttons Wrapper */
.marketing-buttons-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary Button */
.marketing-btn-primary-wrapper {
    margin: 0;
}

.marketing-btn-primary .wp-block-button__link {
    background: linear-gradient(135deg, hsl(354 82% 54%) 0%, hsl(16 85% 58%) 100%);
    color: #ffffff !important;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px !important;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.marketing-btn-primary .wp-block-button__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.marketing-btn-arrow {
    font-size: 20px;
    display: inline-block;
    line-height: 1;
}

/* Secondary Button */
.marketing-btn-secondary-wrapper {
    margin: 0;
}

.marketing-btn-secondary .wp-block-button__link {
    background: #ffffff;
    color: black !important;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px !important;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background-color 0.2s;
}

.marketing-btn-secondary .wp-block-button__link:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.marketing-btn-play {
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

/* Sidebar Column */
.marketing-sidebar {
    flex: 0 0 40%;
}

@media (max-width: 768px) {
    .marketing-sidebar {
        width: 100%;
    }

    .marketing-hero-container .wp-block-buttons {
        margin: auto !important;
    }
}

/* Solution Card */
.marketing-solution-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 42px !important;
}

/* Card Header */
.marketing-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.marketing-card-icon {
    font-size: 24px;
    color: #dc2626;
    margin: 0;
    line-height: 1;
    display: inline-block;
}

.marketing-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #3f4155;
    margin: 0;
    line-height: 1.3;
}

.marketing-card-subtitle {
    font-size: 14px;
    color: #71748e;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

/* Features List */
.marketing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketing-feature-item {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #3f4155;
}

.marketing-feature-item:last-child {
    margin-bottom: 0;
}

.marketing-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* Metrics Row */
.marketing-metrics-row {
    display: flex;
    gap: 0;
    margin-top: 32px;
}

.marketing-metric-column {
    flex: 1;
    text-align: left;
}

.marketing-metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.marketing-metric-label {
    font-size: 14px;
    color: #71748e;
    margin: 0;
    line-height: 1.5;
}

/* WordPress Block Overrides */
.marketing-hero-container .wp-block-group {
    margin: 0;
}

.marketing-hero-container .wp-block-columns {
    margin: 0;
}

.marketing-hero-container .wp-block-spacer {
    margin: 0;
}

.marketing-hero-container .wp-block-buttons {
    margin: 0;
}

.marketing-hero-container .wp-block-list {
    margin: 0;
}


/* Why It Matters - Positive Framing Section */
.marketing-why-matters-positive-section {
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 60px 20px;
    background: #ffffff;
}

.marketing-why-matters-positive-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.marketing-why-matters-positive-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ffecec;
    color: #e53935;
    font-size: 13px !important;
    border-radius: 20px;
    font-weight: 500;
    margin: 0 !important;
    line-height: 1.5;
}

.marketing-why-matters-positive-heading {
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.3;
    color: #1F242E;
    margin: 10px 0 8px 0 !important;
    text-align: center;
}

.marketing-why-matters-positive-subtitle {
    font-size: 18px !important;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 44px auto !important;
    text-align: center;
    line-height: 1.6;
}

.marketing-why-matters-positive-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0 !important;
}

.marketing-why-matters-positive-card {
    flex: 1;
}

.marketing-why-matters-positive-card-inner {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.marketing-why-matters-positive-card-inner:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.marketing-why-matters-positive-card-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #1F242E;
    margin: 0 0 8px 0 !important;
    line-height: 1.3;
}

.marketing-why-matters-positive-card-description {
    font-size: 16px !important;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 18px 0 !important;
    flex-grow: 1;
}

.marketing-why-matters-positive-metric-value {
    font-size: 32px !important;
    font-weight: 700;
    color: #e53935;
    margin: 0 0 4px 0 !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.marketing-why-matters-positive-metric-label {
    font-size: 13px !important;
    color: #6b7280;
    margin: 0 !important;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .marketing-why-matters-positive-section {
        padding: 40px 20px;
    }

    .marketing-why-matters-positive-heading {
        font-size: 28px !important;
        font-weight: 700;
    }

    .marketing-why-matters-positive-subtitle {
        font-size: 16px !important;
    }

    .marketing-why-matters-positive-cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .marketing-why-matters-positive-card {
        flex-basis: 100% !important;
    }

    .marketing-why-matters-positive-metric-value {
        font-size: 28px !important;
    }
}

/* Why This Matters Section */
.marketing-why-matters-section {
    margin: 0 auto;
    padding: 80px 0px;
    background-color: #FBFBFB;
}

.marketing-why-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.marketing-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FEF3C7;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px !important;
    font-weight: 600;
    color: #BC6426;
    margin: 0;
}

.marketing-how-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ea2a3d1a;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px !important;
    font-weight: 600;
    color: #ea2a3d;
    margin: 0 0 8px 0;
}

.marketing-problem-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1F242E;
    margin: 0 !important;
    text-align: center;
}

.marketing-problem-cards {
    display: flex !important;
    gap: 24px;
    margin-top: 32px;
}

.marketing-problem-card {
    display: flex !important;
    flex: 1;
    justify-content: center;
}

.marketing-problem-card>div {
    width: 60%
}

.marketing-problem-card-inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #E5E7EB;
    margin-bottom: 16px !important;
}

.marketing-problem-card-inner:hover {
    border: 1px solid #fde68a;
}

.marketing-problem-card-inner>div {
    display: flex;
    align-items: center;
}

.marketing-problem-card-inner p {
    margin: 0 8px 0 0;
}

.marketing-problem-card-inner p {
    max-width: fit-content !important;
}

.marketing-problem-icon {
    width: 32px;
    height: 32px;
    padding: 0 !important;
}

.marketing-problem-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3f4155;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .marketing-problem-cards {
        flex-direction: column;
    }

    .marketing-problem-heading {
        font-size: 28px;
    }
}

/* Before/After Comparison Section */
.marketing-before-after-wrapper {
    display: flex;
    gap: 24px;
    margin: 0;
    max-width: 74%;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 40px !important;
}

.marketing-before-card,
.marketing-after-card {
    flex: 1;
}

.marketing-before-card-inner {
    background: #FEF6EF;
    border: 2px solid #FCA5A5;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.marketing-after-card-inner {
    background: #E5F9EF;
    border: 2px solid #86EFAC;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.marketing-before-header,
.marketing-after-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.marketing-before-icon {
    width: 48px;
    height: 48px;
    background: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #DC2626;
    margin: 0;
    flex-shrink: 0;
    line-height: 1;
}

.marketing-after-icon {
    width: 48px;
    height: 48px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #10B981;
    margin: 0;
    flex-shrink: 0;
    line-height: 1;
}

.marketing-before-title,
.marketing-after-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #1F242E;
    margin: 0 !important;
    line-height: 1.2;
}

marketing-before-title {
    color: #B91C1C;
}

.marketing-after-title {
    color: #15803D;
}

.marketing-before-subtitle,
.marketing-after-subtitle {
    font-size: 14px !important;
    color: #71748E;
    margin: 4px 0 0 0 !important;
    line-height: 1.5;
}

.marketing-before-subtitle {
    color: #dc2626b3;
}

.marketing-after-subtitle {
    color: #16a34ab3;
}

.marketing-before-list,
.marketing-after-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.marketing-before-item,
.marketing-after-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px !important;
    line-height: 1.6;
    color: #1f242ecc;
}

.marketing-before-item:last-child,
.marketing-after-item:last-child {
    margin-bottom: 0;
}

.marketing-before-item-icon {
    width: 24px;
    height: 24px;
    background: #FEE2E2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #DC2626;
    flex-shrink: 0;
    line-height: 1;
}

.marketing-after-item-icon {
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #10B981;
    flex-shrink: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .marketing-before-after-wrapper {
        flex-direction: column;
        max-width: 98%
    }

    .marketing-before-card,
    .marketing-after-card {
        flex-basis: 100% !important;
    }
}

/* Process Flow Section */
.mb-0 {
    margin-bottom: 0 !important;
}

/* How OCR works section */
.how-sub-heading {
    font-weight: 500;
    line-height: 33px;
}

.how-heading {
    margin: 2px auto 0 !important;
}

.process-container {
    max-width: 1140px;
    margin: 0 auto !important;
    padding: 60px 20px 60px;
}

/* Process steps row */
.steps-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 10px;
    margin: 0 !important;
    min-height: 400px;
}

.step-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Step circles */
.step-circle {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    display: flex;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 200px auto 0;
    border: 10px solid #fde2e4;
    flex-shrink: 0;
    box-sizing: border-box;
}

.step-circle .wp-block-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* Step icon styling */
.step-icon {
    width: 60px !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    flex-shrink: 0;
}

.step-icon figure {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.step-icon img {
    width: 60px !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
}

/* Step content */
.step-content {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
    z-index: 10;
}

/* Alternate content positioning for desktop */
.step-wrapper:nth-child(odd) .step-content {
    top: -170px;
    bottom: auto;
}

.step-wrapper:nth-child(even) .step-content {
    top: 150px;
}

.step-wrapper .step-content h2 {
    font-size: 18px !important;
    font-weight: bold;
    margin-bottom: 8px !important;
    color: #000;
    line-height: 1.2;
}

.step-wrapper .step-content p {
    color: #666;
    font-size: 14px !important;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Number badges */
.step-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-weight: 500;
    font-size: 19.33px;
    box-shadow: 0px 2.2px 2.2px 0px #00000040;
    margin: 0;
    padding: 0;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
}

.step-number p {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 19.33px;
    font-weight: 500;
}

/* Specific number positions - relative to step-circle */
.step-wrapper:nth-child(odd) .step-number {
    top: -18px;
}

.step-wrapper:nth-child(even) .step-number {
    bottom: -22px;
}

/* Horizontal connecting lines */
.step-wrapper:not(:last-child)::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #e63946;
    top: calc(15px + 34.5px + 20px);
    left: calc(131.5px + 22px);
    width: calc(100% - 36px - 23px);
    z-index: 0;
    transform: translateY(-50%);
}

.step-circle {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

/* Vertical connecting lines for top numbers */
.step-wrapper:nth-child(odd) .step-number::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: #e63946;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    z-index: 0;
}

/* Vertical connecting lines for bottom numbers */
.step-wrapper:nth-child(even) .step-number::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: #e63946;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    z-index: 0;
}

@media (max-width: 768px) {
    .process-container {
        padding: 40px 10px;
    }

    .steps-row {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 0;
        min-height: auto;
    }

    .step-wrapper:not(:last-child) .step-circle::after {
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
        z-index: 0;
        top: 100%;
        height: 50px;
    }

    /* Reset desktop connecting lines */
    .step-wrapper::before,
    .step-wrapper::after {
        display: none;
    }

    /* Mobile step wrapper */
    .step-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 20px 0;
    }

    /* Center the circles */
    .step-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Position the step content */
    .step-content {
        position: absolute;
        width: calc(50% - 80px);
        max-width: 300px;
        margin: 0;
        transform: translateX(0);
    }

    /* Left side content */
    .step-wrapper:nth-child(odd) .step-content {
        left: 0;
        padding-right: 20px;
        margin-bottom: 0;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Right side content */
    .step-wrapper:nth-child(even) .step-content {
        right: 0;
        margin-top: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        left: auto;
    }

    .step-content h2 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 14px;
        margin: 0;
        max-width: none;
    }

    /* Number badges on top of circles */
    .step-wrapper:nth-child(odd) .step-number,
    .step-wrapper:nth-child(even) .step-number {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
    }
}

@media only screen and (max-width: 572px) {

    /* How OCR works section */
    .how-heading {
        margin-bottom: 34px !important;
    }

    .steps-row {
        padding-top: 0;
        margin-top: 0;
    }

    .step-content {
        width: calc(50% - 35px);
        text-align: center;
        left: auto;
    }

    .step-wrapper:nth-child(odd) .step-content,
    .step-wrapper:nth-child(even) .step-content {

        bottom: unset;
    }

    .step-wrapper:nth-child(odd) .step-content {
        padding-right: 10px;
    }

    .step-wrapper:nth-child(even) .step-content {
        padding-left: 10px;
    }

    .step-wrapper .step-content h2 {
        font-size: 15px !important;
        margin-top: 0 !important;
    }

    .step-wrapper .step-content p {
        padding: 0;
    }

    .step-circle {
        width: 74px;
        height: 74px;
        border: 5px solid #fde2e4;
    }

    .step-wrapper:not(:last-child) .step-circle::after {
        width: 2px;
        top: 69px;
        z-index: -2;
        left: 31px;
        height: calc(100% + 10px);
    }

    .step-number {
        width: 22.5px;
        height: 22.5px;
        font-size: 14.66px;
        box-shadow: 0px 1.67px 1.67px 0px #00000040;
    }

    .step-wrapper:nth-child(odd) .step-number,
    .step-wrapper:nth-child(even) .step-number {
        top: -12px;
    }

    .step-wrapper:nth-child(odd) .step-number::before {
        width: 51px;
        top: 43px;
        right: 30%;
        left: auto;
        height: 2px;
    }

    .step-wrapper:nth-child(even) .step-number::before {
        width: 40px;
        top: 42px;
        left: 51px;
        height: 2px;
    }

    .step-icon {
        transform: scale(0.75);
    }
}

/* CTA Banner */
.marketing-cta-banner {
    background: #ea2a3d;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 0 auto !important;
    ;
}

.marketing-cta-title {
    font-size: 24px !important;
    font-weight: 700;
    color: #ffffff;
    margin: 0 !important;
}

.marketing-cta-subtitle {
    font-size: 16px !important;
    color: #ffffffcc;
    margin: 8px 0 0 0;
    opacity: 0.9;
}

.marketing-cta-button-wrapper {
    margin-top: 24px;
}

.marketing-cta-button .wp-block-button__link {
    background: #ffffff;
    color: #ea2a3d !important;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marketing-cta-play {
    font-size: 14px;
    color: #dc2626;
}

@media (max-width: 768px) {
    .marketing-cta-title {
        font-size: 28px;
    }

    .marketing-problem-card>div {
        width: 100%;
    }

    .marketing-step-wrapper {
        padding: 0 !important;
    }

    .marketing-cta-banner {
        margin: 0 !important;
    }

    .download-buttons .show-on-mobile {
        margin-bottom: 2px !important;
    }
}

/* Business Impact Section */
.marketing-impact-section {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    padding: 80px 20px;
    margin: 0;
}

.marketing-impact-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.marketing-impact-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff1a;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px !important;
    font-weight: 600;
    color: #ffffff;
    margin: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marketing-impact-icon {
    font-size: 16px;
    display: inline-block;
}

.marketing-impact-heading {
    font-size: 36px !important;
    font-weight: 700;
    color: #ffffff;
    margin: 0 !important;
    text-align: center;
}

.marketing-impact-description {
    font-size: 16px !important;
    color: #ffffffcc;
    margin: 16px auto 0;
    text-align: center;
    max-width: 700px;
    opacity: 0.95;
}

.marketing-impact-cards {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.marketing-impact-card {
    flex: 1;
}

.marketing-impact-card-inner {
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.marketing-impact-value {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.marketing-impact-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.marketing-impact-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .marketing-impact-cards {
        flex-direction: column;
    }

    .marketing-impact-heading {
        font-size: 28px;
    }
}

/* Ideal for These Businesses Section */
.marketing-businesses-section {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 20px 100px;
}

.marketing-businesses-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.marketing-businesses-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dbeafe;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px !important;
    font-weight: 500;
    color: #1d4ed8;
    margin: 0;
}

.marketing-businesses-icon {
    font-size: 16px;
    display: inline-block;
}

.marketing-businesses-heading {
    font-size: 36px !important;
    font-weight: 700;
    color: #1F242E;
    margin: 0 !important;
    text-align: center;
}

.marketing-businesses-description {
    font-size: 18px !important;
    color: #737b8c;
    margin: 16px auto 0;
    text-align: center;
    max-width: 700px;
}

.marketing-businesses-grid {
    display: flex;
    gap: 24px;
    margin-top: 18px !important;
}

.marketing-business-card {
    flex: 1;
}

.marketing-business-card-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.marketing-business-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.marketing-business-card-inner.highlighted .marketing-business-title {
    color: #dc2626;
}

.marketing-business-icon {
    flex-shrink: 0;
}

.marketing-business-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #1f242e;
    margin: 0 0 12px 0;
}

.marketing-business-text {
    font-size: 14px !important;
    color: #737B8C;
    margin: 0 0 auto 0;
    line-height: 1.6;
}

.marketing-business-fit {
    font-size: 14px !important;
    color: #EA2A3D;
    font-weight: 400;
    margin: 24px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.marketing-business-fit img {
    border-radius: 24px;
    background: red;
}

/* Hidden link block for marketing team - editable in WordPress but not visible on frontend */
.marketing-business-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Ensure the link is accessible for JavaScript even when hidden */
.marketing-business-link a {
    display: none !important;
}

/* Hidden link block for related cards - editable in WordPress but not visible on frontend */
.marketing-related-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Ensure the link is accessible for JavaScript even when hidden */
.marketing-related-link a {
    display: none !important;
}

@media (max-width: 768px) {
    .marketing-businesses-grid {
        flex-direction: column;
    }

    .marketing-businesses-heading {
        font-size: 28px;
    }

    .marketing-businesses-section {
        padding: 0;
    }
}

/* Related Use Cases Section */
.marketing-related-section {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 80px 20px;
}

.marketing-related-heading {
    font-size: 30px !important;
    font-weight: 700;
    color: #1f242e;
    margin: 0 !important;
    text-align: center;
}

.marketing-related-subtitle {
    font-size: 16px !important;
    color: #737b8c;
    margin: 8px 0 0 0 !important;
    text-align: center;
}

.marketing-related-cards {
    display: flex;
    margin-top: 48px;
}

.marketing-related-card {
    flex: 1;
}

.marketing-related-card-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.marketing-related-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.marketing-related-icon img {
    width: 96% !important;
}

.marketing-related-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #1F242E;
    margin: 0 0 12px 0 !important;
}

.marketing-related-description {
    font-size: 14px !important;
    color: #737B8C;
    margin: 0;
    line-height: 1.6;
}

.marketing-related-arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 24px;
    color: #3f4155;
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .marketing-related-cards {
        flex-direction: column;
    }

    .marketing-related-heading {
        font-size: 28px;
    }
}

/* WordPress Block Overrides for Content Sections */
.marketing-why-matters-positive-section .wp-block-group,
.marketing-why-matters-section .wp-block-group,
.marketing-impact-section .wp-block-group,
.marketing-businesses-section .wp-block-group,
.marketing-related-section .wp-block-group,
.marketing-features-section .wp-block-group,
.process-container .wp-block-group {
    margin: 0;
}

.marketing-why-matters-positive-section .wp-block-columns,
.marketing-why-matters-section .wp-block-columns,
.marketing-impact-section .wp-block-columns,
.marketing-businesses-section .wp-block-columns,
.marketing-related-section .wp-block-columns,
.marketing-features-section .wp-block-columns,
.process-container .wp-block-columns {
    margin: 0;
}

.marketing-why-matters-positive-section .wp-block-spacer,
.marketing-why-matters-section .wp-block-spacer,
.marketing-impact-section .wp-block-spacer,
.marketing-businesses-section .wp-block-spacer,
.marketing-related-section .wp-block-spacer,
.marketing-features-section .wp-block-spacer,
.process-container .wp-block-spacer {
    margin: 0;
}

.marketing-why-matters-positive-section .wp-block-buttons,
.marketing-why-matters-section .wp-block-buttons,
.marketing-impact-section .wp-block-buttons,
.marketing-businesses-section .wp-block-buttons,
.marketing-related-section .wp-block-buttons,
.marketing-features-section .wp-block-buttons,
.process-container .wp-block-buttons {
    margin: 0;
}

.marketing-why-matters-positive-section .wp-block-list,
.marketing-why-matters-section .wp-block-list,
.marketing-impact-section .wp-block-list,
.marketing-businesses-section .wp-block-list,
.marketing-related-section .wp-block-list,
.marketing-features-section .wp-block-list,
.process-container .wp-block-list {
    margin: 0;
}

.content-area.sidebar-right.no-sidebar {
    width: 100%;
    margin-top: 10px;
}

.page-wrap {
    padding: 0 !important;
}


#transform-your-business {
    background: #1F242E;
    padding: 70px;
}

.ready-to-transform-title {
    color: #ffff;
    font-size: 36px !important
}

.ready-to-transform-subtitle {
    color: #ffffff80;
    font-size: 18px !important;
    margin-bottom: 10px;
}

.ready-to-transform-credit-note {
    font-size: 14px !important;
    color: #ffffff80;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #transform-your-business {
        padding: 0;
    }
}

/* Features Section */
.marketing-features-section {
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 48px 16px;
    background-color: #F9FAFB;
}

.marketing-features-heading {
    font-size: 24px !important;
    font-weight: 700;
    color: #1F242E;
    margin: 0 0 16px 0 !important;
    line-height: 1.2;
}

.marketing-features-description {
    font-size: 16px !important;
    color: #737B8C;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.6;
}

.marketing-features-description strong {
    font-weight: 700;
    color: #1F242E;
}

.marketing-features-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 !important;
}

.marketing-feature-card {
    flex: 1;
}

.marketing-feature-card-inner {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.marketing-feature-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.marketing-feature-number {
    font-size: 13px !important;
    font-weight: 700;
    color: #E31E24;
    margin: 0 0 6px 0 !important;
    line-height: 1.5;
}

.marketing-feature-title {
    font-size: 15px !important;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0 !important;
    line-height: 1.3;
}

.marketing-feature-card-description {
    font-size: 14px !important;
    line-height: 1.7;
    color: #6B7280;
    margin: 0 !important;
}

.marketing-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.marketing-feature-icon-wrapper.green {
    background-color: #D1FAE5;
}

.marketing-feature-icon-wrapper.blue {
    background-color: #DBEAFE;
}

.marketing-feature-icon-wrapper.yellow {
    background-color: #FEF3C7;
}

.marketing-feature-icon {
    font-size: 32px;
    color: #10B981;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}

.marketing-feature-icon-wrapper.blue .marketing-feature-icon,
.marketing-feature-icon-wrapper.yellow .marketing-feature-icon {
    width: 40px;
    height: 40px;
    margin: 0;
}

.marketing-feature-icon-wrapper.blue .marketing-feature-icon img,
.marketing-feature-icon-wrapper.yellow .marketing-feature-icon img {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0;
}


@media (max-width: 768px) {
    .marketing-features-section {
        padding: 40px 16px;
    }

    .marketing-features-heading {
        font-size: 28px !important;
    }

    .marketing-features-description {
        font-size: 16px !important;
    }

    .marketing-features-cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .marketing-feature-card {
        flex-basis: 100% !important;
    }
}
