@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ==========================================================================
   PDS Theme Toolkit — Centralized Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --pds-font: 'Inter', sans-serif;
    --pds-color-text: #1f2937;
    --pds-color-text-light: #6b7280;
    --pds-color-text-muted: #9ca3af;
    --pds-color-bg: #ffffff;
    --pds-color-bg-light: rgba(150, 120, 160, 0.08);
    --pds-color-bg-dark: #1f2937;
    --pds-color-border: #e5e7eb;
    --pds-color-accent: #14b8a6;
    --pds-color-secondary: #602654;
    --pds-color-white: #ffffff;
    --pds-radius: 8px;
    --pds-radius-sm: 8px;
    --pds-container-max: 1200px;
    --pds-section-py: 80px;
    --pds-gap: 24px;
    --pds-gap-lg: 48px;
    --pds-transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */

/* Kill Elementor container default padding/gap around our widgets */
.e-con:has(> .elementor-widget-pds-hero),
.e-con:has(> .elementor-widget-pds-about-block),
.e-con:has(> .elementor-widget-pds-feature-cards),
.e-con:has(> .elementor-widget-pds-testimonial),
.e-con:has(> .elementor-widget-pds-trust-block),
.e-con:has(> .elementor-widget-pds-service-cards),
.e-con:has(> .elementor-widget-pds-case-study-cards),
.e-con:has(> .elementor-widget-pds-cta-banner),
.e-con:has(> .elementor-widget-pds-case-study-section),
.e-con:has(> .elementor-widget-pds-footer) {
    padding: 0 !important;
    gap: 0 !important;
}

/* Remove gap between consecutive PDS containers on the page */
.elementor[data-elementor-type="wp-page"] {
    gap: 0 !important;
}

.pds-container {
    max-width: var(--pds-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
.pds-section-title {
    font-family: var(--pds-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--pds-color-text);
    line-height: 1;
    margin: 0 0 8px;
}

.pds-section-subtitle {
    font-family: var(--pds-font);
    font-size: 16px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ---------- Buttons ---------- */
.pds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--pds-radius-sm);
    transition: opacity var(--pds-transition), box-shadow var(--pds-transition);
    cursor: pointer;
    line-height: 1.4;
}

.pds-btn:hover {
    opacity: 0.85;
}

.pds-btn--primary {
    background: var(--pds-color-accent);
    color: var(--pds-color-white);
    border: 2px solid var(--pds-color-accent);
}

.pds-btn--outline {
    background: transparent;
    color: var(--pds-color-secondary);
    border: 2px solid var(--pds-color-secondary);
}

.pds-btn--white {
    background: var(--pds-color-white);
    color: var(--pds-color-text);
    border: 2px solid var(--pds-color-white);
}

.pds-btn--white-outline {
    background: transparent;
    color: var(--pds-color-white);
    border: 2px solid var(--pds-color-white);
}

/* ---------- Hero ---------- */
.pds-hero {
    padding: var(--pds-section-py) 0;
}

.pds-hero__inner {
    display: flex;
    align-items: center;
    gap: var(--pds-gap-lg);
}

.pds-hero__content {
    flex: 1 1 60%;
}

.pds-hero__title {
    font-family: var(--pds-font);
    font-size: 60px;
    font-weight: 700;
    color: var(--pds-color-text);
    line-height: 1.1;
    margin: 0 0 16px;
}

.pds-hero__subtitle {
    font-family: var(--pds-font);
    font-size: 16px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0 0 32px;
}

.pds-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pds-hero__image {
    flex: 1 1 40%;
}

.pds-hero__image img {
    width: 100%;
    height: auto;
    border-radius: var(--pds-radius);
    display: block;
}

/* ---------- About Block ---------- */
.pds-about {
    padding: 48px 0;
    background: transparent;
}

.pds-about__inner {
    display: flex;
    gap: var(--pds-gap-lg);
    align-items: stretch;
    padding: 40px 44px;
    background: #f0efed;
    border-radius: 24px;
}

.pds-about__main {
    flex: 1 1 55%;
}

.pds-about__title {
    font-family: var(--pds-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--pds-color-text);
    line-height: 1.05;
    margin: 0 0 18px;
}

.pds-about__text {
    font-family: var(--pds-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--pds-color-text);
    line-height: 1.35;
    margin: 0;
    max-width: 18ch;
}

.pds-about__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--pds-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pds-color-accent);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.pds-toggle-icon {
    transition: transform var(--pds-transition);
}

.is-open > .pds-toggle-icon,
.is-open .pds-toggle-icon {
    transform: rotate(180deg);
}

.pds-about__expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pds-about__expanded.is-open {
    max-height: 1000px;
}

.pds-about__expanded-inner {
    padding-top: 20px;
    font-family: var(--pds-font);
    font-size: 15px;
    color: var(--pds-color-text-light);
    line-height: 1.7;
    max-width: 58ch;
}

.pds-about__stat {
    flex: 1 1 40%;
    background: var(--pds-color-bg);
    padding: 32px 34px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.08);
}

.pds-about__stat p {
    font-family: var(--pds-font);
    font-size: 17px;
    color: var(--pds-color-text);
    line-height: 1.8;
    margin: 0;
}

.pds-about__stat strong {
    font-weight: 700;
}

/* ---------- Feature Cards ---------- */
.pds-features {
    padding: var(--pds-section-py) 0;
}

.pds-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pds-gap);
}

.pds-feature-card {
    text-align: left;
    padding: 24px 16px;
}

.pds-feature-card__image {
    width: 100%;
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--pds-radius);
    filter: none;
    margin: 0 0 16px;
    display: block;
}

/* Constrain webp/large images inside feature cards */
.pds-feature-card img {
    max-height: 160px;
    object-fit: cover;
    width: 100%;
}

.pds-feature-card__title {
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--pds-color-text);
    margin: 0 0 8px;
}

.pds-feature-card__desc {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Testimonial ---------- */
.pds-testimonial {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
}

.pds-testimonial__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pds-testimonial__quote-wrap {
    width: min(100%, 760px);
    margin: 0 auto;
}

.pds-testimonial__quote {
    font-family: var(--pds-font);
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    color: var(--pds-color-text);
    line-height: 1.55;
    margin: 0 0 24px;
    border-left: 3px solid rgba(31, 41, 55, 0.16);
    padding-left: 22px;
    max-width: none;
}

.pds-testimonial__author {
    font-family: var(--pds-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--pds-color-text);
    margin: 0;
}

.pds-testimonial__role {
    font-family: var(--pds-font);
    font-size: 16px;
    color: var(--pds-color-text);
    margin: 6px 0 0;
}

.pds-testimonial__meta-note {
    font-family: var(--pds-font);
    font-size: 16px;
    font-style: italic;
    color: var(--pds-color-text-light);
    margin: 18px 0 0;
}

.pds-testimonial__meta-note::before {
    content: "- ";
}

/* ---------- Trust Block ---------- */
.pds-trust {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
}

.pds-trust__inner {
    display: flex;
    justify-content: center;
}

.pds-trust__panel {
    width: min(100%, 760px);
    padding-top: 34px;
    border-top: 1px solid rgba(31, 41, 55, 0.12);
}

.pds-trust__title {
    font-family: var(--pds-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pds-color-secondary);
    margin: 0 0 20px;
    text-align: center;
}

.pds-trust__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.pds-trust__list li {
    font-family: var(--pds-font);
    font-size: 16px;
    color: var(--pds-color-text);
    line-height: 1.65;
    padding-left: 28px;
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.pds-trust__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pds-color-accent);
    font-weight: 700;
}

/* ---------- Service Cards ---------- */
.pds-services {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
}

.pds-services .pds-section-title,
.pds-services .pds-section-subtitle {
    text-align: center;
}

.pds-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pds-gap);
}

.pds-service-card {
    background: var(--pds-color-bg);
    border-radius: var(--pds-radius);
    padding: 32px;
    border: 1px solid var(--pds-color-border);
    transition: box-shadow var(--pds-transition);
}

.pds-service-card--full-width {
    grid-column: 1 / -1;
}

.pds-service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pds-service-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.12);
    color: var(--pds-color-accent);
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 700;
    margin: 0 16px 0 0;
    flex-shrink: 0;
}

.pds-service-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pds-service-card__title {
    font-family: var(--pds-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--pds-color-text);
    margin: 0;
}

.pds-service-card__subtitle {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0;
}

.pds-service-card__description {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 10px 0 0;
}

.pds-service-card__link {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 500;
    color: var(--pds-color-accent);
    text-decoration: none;
}

.pds-service-card__link:hover {
    text-decoration: underline;
}

.pds-service-card__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--pds-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--pds-color-accent);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.pds-service-card__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pds-service-card__details.is-open {
    max-height: 2000px;
}

.pds-service-card__details-inner {
    padding-top: 16px;
    border-top: 1px solid var(--pds-color-border);
    margin-top: 16px;
}

.pds-service-card__details-inner ul {
    padding-left: 18px;
    margin: 8px 0;
}

.home .pds-services__fit {
    margin-top: 56px;
    padding: 0 0 10px;
}

.home .pds-services__fit .pds-sp-fit-grid {
    gap: 56px;
}

.home .pds-services__fit .pds-sp-section-heading {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

.home .pds-services__fit .pds-sp-bullet-list {
    margin: 0;
    padding-left: 24px;
}

.home .pds-services__fit .pds-sp-bullet-list li {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.45;
    color: #111111;
}

.pds-service-card__details-inner p strong {
    color: var(--pds-color-accent);
}

.pds-service-card__details-inner li {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-light);
    line-height: 1.8;
}

/* ---------- Case Study Cards ---------- */
.pds-case-studies {
    padding: var(--pds-section-py) 0;
}

.pds-case-studies .pds-section-title,
.pds-case-studies .pds-section-subtitle {
    text-align: center;
}

.pds-case-studies__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}

.pds-cs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid var(--pds-color-border);
    overflow: hidden;
    background: var(--pds-color-bg);
    transition: box-shadow var(--pds-transition);
}

.pds-cs-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pds-cs-card__image {
    width: 100% !important;
    height: 260px !important;
    max-height: 260px !important;
    object-fit: cover !important;
    display: block;
    border-radius: 0;
}

.pds-cs-card__overlay {
    display: none;
}

.pds-cs-card__content {
    padding: 24px 28px 28px;
}

.pds-cs-card__title {
    font-family: var(--pds-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.pds-cs-card__desc {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-accent);
    line-height: 1.5;
    margin: 0;
}

.pds-cs-card a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.home .elementor-14 .elementor-element-30cdc462 {
    display: none !important;
}

.pds-hero--home {
    padding: 0 0 32px;
}

.pds-hero--home .pds-container {
    max-width: none;
    padding: 0;
}

.pds-hero--home .pds-hero__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    min-height: 480px;
    background-color: #06363d;
    background-image: url('/wp-content/uploads/2023/12/Layer-1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 82px 92px;
    border-radius: 0;
    box-shadow: none;
}

.pds-hero--home .pds-hero__panel::before,
.pds-hero--home .pds-hero__panel::after {
    content: none;
}

.pds-hero--home .pds-hero__panel::before {
    display: none;
}

.pds-hero--home .pds-hero__panel::after {
    display: none;
}

.pds-hero--home .pds-hero__panel-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.pds-hero--home .pds-hero__title {
    color: #ffffff;
    font-size: clamp(40px, 3.5vw, 44px);
    line-height: 1.15;
    max-width: 900px;
    margin: 0 0 18px;
}

.pds-hero--home .pds-hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0;
}

.pds-hero--home .pds-hero__ctas--home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    max-width: var(--pds-container-max);
    margin: 0 auto;
    padding: 14px 24px 0;
}

.pds-hero--home .pds-hero__ctas--home .pds-btn {
    justify-content: flex-start;
    min-height: 0;
    width: 100%;
    padding: 6px 12px 6px;
    border: 0;
    border-left: 3px solid #2a2a2a;
    border-radius: 0;
    background: #f3f7f6;
    color: var(--pds-color-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.pds-hero--home .pds-hero__ctas--home .pds-btn:hover {
    opacity: 1;
    color: var(--pds-color-accent);
    background: #eef4f3;
}

/* Home bottom CTA uses same link treatment as hero links */
.home .pds-cta-banner {
    text-align: left;
}
.home .pds-cta-banner .pds-cta-banner__title,
.home .pds-cta-banner .pds-cta-banner__body {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.home .pds-cta-banner .pds-cta-banner__bottom-text {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}
.home .pds-cta-banner .pds-cta-banner__ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    justify-content: stretch;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: 0;
}
.home .pds-cta-banner .pds-cta-banner__ctas .pds-btn {
    justify-content: flex-start;
    min-height: 0;
    width: 100%;
    padding: 6px 12px;
    border: 0;
    border-left: 3px solid #2a2a2a;
    border-radius: 0;
    background: #f3f7f6;
    color: var(--pds-color-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}
.home .pds-cta-banner .pds-cta-banner__ctas .pds-btn:hover {
    color: var(--pds-color-accent);
    background: #eef4f3;
}
@media (max-width: 767px) {
    .home .pds-cta-banner .pds-cta-banner__ctas {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.pds-case-studies--home {
    padding: 44px 0 56px;
    background: #f1ede9;
}

.pds-case-studies--home .pds-case-studies__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.pds-case-studies--home .pds-cs-card {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.pds-case-studies--home .pds-cs-card:hover {
    box-shadow: none;
}

.pds-case-studies--home .pds-cs-card__media {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    background: transparent;
    overflow: hidden;
}

.pds-case-studies--home .pds-cs-card__image {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 0;
    display: block;    
    background-color: transparent;
    object-fit: cover !important;
}

.pds-case-studies--home .pds-cs-card--agrofacil .pds-cs-card__image {
    background: transparent;
}

.pds-case-studies--home .pds-cs-card__content {
    padding: 16px 0 0;
}

.pds-case-studies--home .pds-cs-card__title {
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 8px;
}

.pds-case-studies--home .pds-cs-card__desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.45;
}

/* ---------- CTA Banner ---------- */
.pds-cta-banner {
    padding: var(--pds-section-py) 0;
    text-align: center;
}

.pds-cta-banner--dark {
    background: var(--pds-color-bg-dark);
    color: var(--pds-color-white);
}

.pds-cta-banner__title {
    font-family: var(--pds-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.pds-cta-banner--dark .pds-cta-banner__title {
    color: var(--pds-color-white);
}

.pds-cta-banner__body {
    font-family: var(--pds-font);
    font-size: 16px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pds-cta-banner--dark .pds-cta-banner__body {
    color: var(--pds-color-text-muted);
}

.pds-cta-banner__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--pds-color-border);
}

.pds-cta-banner__bottom-text {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pds-cta-banner__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.pds-cta-banner__details--logos-top {
    margin-top: 6px;
    margin-bottom: 44px;
}

.pds-cta-banner__expertise {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto 42px;
    text-align: left;
}

.pds-cta-banner__expertise-col {
    min-width: 0;
}

.pds-cta-banner__expertise-title {
    margin: 0 0 12px;
    font-family: var(--pds-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pds-color-text);
}

.pds-cta-banner__expertise-intro {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pds-color-text);
}

.pds-cta-banner__expertise-list {
    margin: 0;
    padding-left: 22px;
}

.pds-cta-banner__expertise-list li {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--pds-color-text);
}

.pds-cta-banner__logos-panel {
    padding: 26px clamp(22px, 4vw, 44px);
    border-radius: 4px;
    background: #f3edeb;
}

.pds-cta-banner__details--logos-top .pds-cta-banner__logos-panel {
    position: relative;
    border-radius: 0;
    box-shadow: 0 0 0 100vmax #f3edeb;
    clip-path: inset(0 -100vmax);
}

.pds-cta-banner__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 40px);
    align-items: center;
}

.pds-cta-banner__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 8px 10px;
}

.pds-cta-banner__logo-image {
    width: auto;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    opacity: 0.92;
    transition: filter var(--pds-transition), opacity var(--pds-transition), transform var(--pds-transition);
}

.pds-cta-banner__logo-image--celsa {
    max-width: 190px;
}

.pds-cta-banner__logo-image--agrofacil {
    max-width: 168px;
}

.pds-cta-banner__logo-image--formaspace {
    max-width: 228px;
}

.pds-cta-banner__logo-image--g-barco {
    max-width: 146px;
    max-height: 68px;
}

.pds-cta-banner__logo-item:hover {
    background: transparent;
}

.pds-cta-banner__logo-item:hover .pds-cta-banner__logo-image {
    filter: grayscale(0);
    opacity: 1;
    transform: none;
}

.pds-cta-banner__details .pds-cta-banner__bottom-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pds-cta-banner__bottom-text h3,
.pds-cta-banner__bottom-text h4 {
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pds-color-text);
    margin: 0 0 8px;
}

.pds-cta-banner__bottom-text ul {
    list-style: disc;
    padding-left: 0;
    margin: 8px auto 16px;
    max-width: 420px;
}

.pds-cta-banner__bottom-text ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--pds-color-text-light);
    text-align: center;
    list-style: none;
}

.pds-cta-banner__bottom-text p {
    margin: 0 0 8px;
}

.pds-cta-banner--dark .pds-cta-banner__bottom-text {
    color: var(--pds-color-text-muted);
}

.pds-cta-banner--dark .pds-cta-banner__bottom-text h3,
.pds-cta-banner--dark .pds-cta-banner__bottom-text h4 {
    color: var(--pds-color-white);
}

.pds-cta-banner--dark .pds-cta-banner__logos-panel {
    background: #f3edeb;
}

.pds-cta-banner--dark .pds-cta-banner__bottom-text ul li {
    color: var(--pds-color-text-muted);
}

/* Light mode is the default for CTA banner (mockup uses white bg) */
.pds-cta-banner--light {
    background: var(--pds-color-bg-light);
}

.pds-cta-banner--light .pds-cta-banner__title {
    color: var(--pds-color-text);
}

/* ---------- Case Study Page Sections ---------- */

/* Section label (SECTION 1, SECTION 2, etc.) */
.pds-cs-section-label {
    display: block;
    font-family: var(--pds-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pds-color-accent);
    margin: 0 0 12px;
}

/* Section heading — shared across all CS sections */
.pds-cs-section-heading {
    font-family: var(--pds-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px;
}

/* Hero */
.pds-cs-page-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.pds-cs-page-hero__title {
    font-family: var(--pds-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.pds-cs-page-hero__subtitle {
    font-family: var(--pds-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pds-color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px;
}

.pds-cs-page-hero__tagline {
    font-family: var(--pds-font);
    font-size: 15px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Challenge — 2-column: title+intro left, items right */
.pds-cs-challenge {
    padding: var(--pds-section-py) 0;
}

.pds-cs-challenge__inner {
    display: flex;
    gap: var(--pds-gap-lg);
    align-items: flex-start;
}

.pds-cs-challenge__left {
    flex: 1 1 40%;
    background: var(--pds-color-accent);
    color: var(--pds-color-white);
    padding: 40px 32px;
    border-radius: var(--pds-radius);
}

.pds-cs-challenge__left .pds-cs-section-label {
    color: rgba(255, 255, 255, 0.7);
}

.pds-cs-challenge__left .pds-cs-section-heading {
    color: var(--pds-color-white);
}

.pds-cs-challenge__intro {
    font-family: var(--pds-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.pds-cs-challenge__right {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pds-cs-challenge__item {
    padding-left: 16px;
    border-left: 3px solid var(--pds-color-accent);
}

.pds-cs-challenge__item-title {
    font-family: var(--pds-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}

.pds-cs-challenge__item-desc {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Challenge cards (legacy class fallback) */
.pds-cs-challenge__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pds-gap);
}

.pds-cs-challenge__card {
    padding: 24px;
    background: var(--pds-color-bg-light);
    border-radius: var(--pds-radius);
}

.pds-cs-challenge__card-title {
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--pds-color-text);
    margin: 0 0 8px;
}

.pds-cs-challenge__card-desc {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Solution — 3-column horizontal grid */
.pds-cs-solution {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
    text-align: center;
}

.pds-cs-solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    counter-reset: solution-step;
}

.pds-cs-solution__item {
    text-align: center;
    counter-increment: solution-step;
    position: relative;
    padding-top: 60px;
}

.pds-cs-solution__item::before {
    content: counter(solution-step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pds-color-accent);
    color: var(--pds-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 700;
}

.pds-cs-solution__item-title {
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pds-color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.pds-cs-solution__item-desc {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Solution steps (legacy class fallback) */
.pds-cs-solution__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pds-cs-solution__step {
    text-align: center;
}

.pds-cs-solution__step-number {
    font-family: var(--pds-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--pds-color-border);
    line-height: 1;
    margin-bottom: 12px;
}

.pds-cs-solution__step-content {
    text-align: center;
}

.pds-cs-solution__step-title {
    font-family: var(--pds-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    margin: 0 0 8px;
}

.pds-cs-solution__step-desc {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Impact — 2x2 grid */
.pds-cs-impact {
    padding: var(--pds-section-py) 0;
    text-align: center;
}

.pds-cs-impact .pds-cs-section-label,
.pds-cs-impact .pds-cs-section-heading {
    text-align: center;
}

.pds-cs-impact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

.pds-cs-impact__card {
    padding: 32px 24px;
    background: var(--pds-color-bg);
    border-radius: var(--pds-radius);
    border: 1px solid var(--pds-color-border);
    border-top: 3px solid var(--pds-color-accent);
}

.pds-cs-impact__value {
    font-family: var(--pds-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--pds-color-accent);
    margin: 0 0 4px;
}

.pds-cs-impact__label {
    font-family: var(--pds-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.pds-cs-impact__desc {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Verdict */
.pds-cs-verdict {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
    text-align: center;
}

.pds-cs-verdict .pds-cs-section-label,
.pds-cs-verdict .pds-cs-section-heading {
    text-align: center;
}

.pds-cs-verdict__label {
    font-family: var(--pds-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pds-color-text-muted);
    margin: 0 0 16px;
}

.pds-cs-verdict__quote {
    font-family: var(--pds-font);
    font-size: 16px;
    font-style: italic;
    color: var(--pds-color-text-light);
    line-height: 1.6;
    border-left: 3px solid var(--pds-color-accent);
    padding-left: 20px;
    margin: 24px auto 0;
    max-width: 700px;
    text-align: left;
}

/* ---------- Footer ---------- */
.pds-footer {
    background: var(--pds-color-bg-dark);
    color: var(--pds-color-white);
    padding: 60px 0 32px;
}

.pds-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pds-gap-lg);
    margin-bottom: 40px;
}

.pds-footer__col-title {
    font-family: var(--pds-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pds-color-white);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.pds-footer__links li {
    margin-bottom: 8px;
}

.pds-footer__links a {
    font-family: var(--pds-font);
    font-size: 14px;
    color: var(--pds-color-text-muted);
    text-decoration: none;
    transition: color var(--pds-transition);
}

.pds-footer__links a:hover {
    color: var(--pds-color-white);
}

.pds-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pds-footer__copyright {
    font-family: var(--pds-font);
    font-size: 13px;
    color: var(--pds-color-text-muted);
    margin: 0;
}

.pds-footer__ctas {
    display: flex;
    gap: 16px;
}

.pds-footer__ctas a {
    font-family: var(--pds-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--pds-color-accent);
    text-decoration: none;
}
.pds-footer__ctas a:hover{
    color: #fff;
}

.pds-footer__col:first-child .pds-footer__col-title {
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
}

.pds-footer__col:first-child .pds-footer__links a {
    color: var(--pds-color-text-muted);
    cursor: default;
    pointer-events: none;
}

/* ---------- Hide theme's HFE footer (we use pds-footer widget) ---------- */
footer#colophon {
    display: none !important;
}

/* ---------- Hide WordPress default page title on pages using PDS widgets ---------- */
/* The theme outputs h1.entry-title which duplicates our widget hero title */
.page h1.entry-title,
.page .entry-title {
    display: none !important;
}

/* ---------- Header Override — match mockup light minimal header ---------- */

/* Hide top info bar (phone, email, social icons) */
.elementor-237 .elementor-element-64ee4fa {
    display: none !important;
}

/* Light background on main nav bar */
.elementor-237 .elementor-element-3f00481 {
    background: var(--pds-color-bg) !important;
    border-bottom: 1px solid var(--pds-color-border);
}

.elementor-237 .elementor-element-fb41625 {
    background: transparent !important;
}

/* Dark nav links on white bg */
.elementor-237 .eael-simple-menu li a,
.elementor-237 .hfe-nav-menu a,
.elementor-237 .elementor-nav-menu a,
.elementor-237 .eael-simple-menu > li > a {
    color: var(--pds-color-text) !important;
    font-family: var(--pds-font) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.elementor-237 .eael-simple-menu li a:hover,
.elementor-237 .hfe-nav-menu a:hover {
    color: var(--pds-color-accent) !important;
}

/* Dropdown submenu styling */
.elementor-237 .eael-simple-menu .sub-menu,
.elementor-237 .hfe-nav-menu .sub-menu {
    background: var(--pds-color-bg) !important;
    border: 1px solid var(--pds-color-border) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.elementor-237 .eael-simple-menu .sub-menu a,
.elementor-237 .hfe-nav-menu .sub-menu a {
    color: var(--pds-color-text-light) !important;
}

.elementor-237 .eael-simple-menu .sub-menu a:hover,
.elementor-237 .hfe-nav-menu .sub-menu a:hover {
    color: var(--pds-color-accent) !important;
}

/* Contact Us button — teal */
.elementor-237 .elementor-element-4d346c9 .elementor-button {
    background: var(--pds-color-accent) !important;
    border-color: var(--pds-color-accent) !important;
    color: var(--pds-color-white) !important;
    border-radius: var(--pds-radius) !important;
    font-family: var(--pds-font) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* PDS logo — show normal colors (no filter) */
.elementor-237 .elementor-element-d469692 img {
    filter: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .pds-hero__title { font-size: 36px; }
    .pds-features__grid { grid-template-columns: 1fr; }
    .pds-cs-impact__grid { grid-template-columns: repeat(2, 1fr); }
    .pds-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .pds-cta-banner__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pds-cta-banner__logo-item { min-height: 88px; }
}

@media (max-width: 767px) {
    :root {
        --pds-section-py: 48px;
    }

    .pds-hero__inner {
        flex-direction: column;
    }

    .pds-hero__content,
    .pds-hero__image {
        flex: 1 1 100%;
    }

    .pds-hero__title { font-size: 28px; }

    .pds-about__inner {
        flex-direction: column;
        padding: 28px 24px;
    }

    .pds-about__title { font-size: 34px; }

    .pds-about__text {
        font-size: 20px;
        max-width: none;
    }

    .pds-testimonial__quote {
        font-size: 22px;
    }

    .pds-testimonial__author {
        font-size: 20px;
    }

    .pds-testimonial__role,
    .pds-testimonial__meta-note,
    .pds-trust__list li {
        font-size: 15px;
    }

    .pds-trust__title {
        font-size: 24px;
    }

    .pds-features__grid {
        grid-template-columns: 1fr;
    }

    .pds-services__grid {
        grid-template-columns: 1fr;
    }

    .pds-case-studies__grid {
        grid-template-columns: 1fr;
    }

    .pds-cs-challenge__inner {
        flex-direction: column;
    }

    .pds-cs-challenge__cards {
        grid-template-columns: 1fr;
    }

    .pds-cs-solution__grid,
    .pds-cs-solution__steps {
        grid-template-columns: 1fr;
    }

    .pds-cs-impact__grid {
        grid-template-columns: 1fr;
    }

    .pds-cs-page-hero__title {
        font-size: 32px;
    }

    .pds-footer__grid {
        grid-template-columns: 1fr;
    }

    .pds-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pds-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .pds-hero__ctas,
    .pds-cta-banner__ctas {
        flex-direction: column;
    }

    .pds-cta-banner__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .pds-cta-banner__logos-panel { padding: 16px; }
    .pds-cta-banner__logo-item { min-height: 80px; padding: 14px; }
    .pds-cta-banner__logo-image { max-height: 44px; }
    .pds-cta-banner__logo-image--celsa { max-width: 154px; }
    .pds-cta-banner__logo-image--agrofacil { max-width: 138px; }
    .pds-cta-banner__logo-image--formaspace { max-width: 184px; }
    .pds-cta-banner__logo-image--g-barco { max-width: 124px; max-height: 48px; }
    .pds-cta-banner__expertise { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }

    .pds-cs-solution__step {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .pds-cta-banner__logos {
        grid-template-columns: 1fr;
    }
}

/* ---------- Formaspace Mockup ---------- */
body.pds-cs-mockup-page {
    background: #ffffff;
}

body.pds-cs-mockup-page::before {
    display: none;
}

body.pds-cs-mockup-page #masthead,
body.pds-cs-mockup-page footer#colophon {
    /*display: none !important;*/
}

body.pds-cs-mockup-page .trp-language-switcher,
body.pds-cs-mockup-page #trp-floater-ls {
    display: none !important;
}

body.pds-cs-mockup-page #page,
body.pds-cs-mockup-page .site-main,
body.pds-cs-mockup-page .elementor[data-elementor-type="wp-page"] {
    position: relative;
    z-index: 1;
    background: transparent;
}

body.pds-cs-mockup-page .site-main {
    padding: 0;
}

body.pds-cs-mockup-page .elementor[data-elementor-type="wp-page"] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 0 48px;
}

body.pds-cs-mockup-page .pds-container {
    max-width: none;
    padding: 0 40px;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup,
body.pds-cs-mockup-page .pds-cs-challenge--mockup,
body.pds-cs-mockup-page .pds-cs-solution--mockup,
body.pds-cs-mockup-page .pds-cs-impact--mockup,
body.pds-cs-mockup-page .pds-cs-verdict--mockup,
body.pds-cs-mockup-page .pds-cta-banner--mockup {
    font-family: 'Montserrat', sans-serif;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup {
    padding: 0;
    background: #ffffff;
    border-bottom: 0;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-container {
    position: relative;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 40px;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-container::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 3px;
    background: #00A19B;
}

body.pds-cs-mockup-page .pds-cs-page-hero__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

body.pds-cs-mockup-page .pds-cs-page-hero__logo {
    width: auto;
    height: 52px;
}

body.pds-cs-mockup-page .pds-cs-page-hero__icon {
    display: inline-flex;
    margin: 0 0 18px;
}

body.pds-cs-mockup-page .pds-cs-page-hero__icon-svg {
    width: 72px;
    height: 72px;
}

body.pds-cs-mockup-page .pds-cs-page-hero__icon {
    display: none !important;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2d2d2d;
    margin: 0 0 8px;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00A19B;
    margin: 0 0 16px;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__tagline {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.7px;
    font-style: italic;
    line-height: 1.7;
    color: #6b6f74;
}

body.pds-cs-mockup-page .pds-cs-page-hero__image-wrap {
    margin-top: 48px;
    text-align: center;
}

body.pds-cs-mockup-page .pds-cs-page-hero__image {
    max-width: 620px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup {
    padding: 0;
    background: #ffffff;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
    flex: 0 0 340px;
    max-width: 340px;
    min-width: 340px;
    padding: 48px 36px;
    background: #00A19B;
    color: #ffffff;
    border-radius: 0;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-label {
    display: inline-block;
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-heading,
body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-cs-section-heading,
body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-section-heading,
body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-section-heading {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22.4px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2d2d2d;
    text-align: center;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-heading {
    color: #ffffff;
    text-align: left;
    font-size: 28px;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__intro {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: #ffffff;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 44px 40px;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
}

body.pds-cs-mockup-page .pds-cs-challenge__item-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 2px;
    border-radius: 6px;
    background: #00A19B;
    color: #ffffff;
}

body.pds-cs-mockup-page .pds-cs-challenge__icon-svg {
    width: 18px;
    height: 18px;
}

body.pds-cs-mockup-page .pds-cs-challenge__item-content {
    min-width: 0;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item-title {
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.4px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d2d2d;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item-desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.8px;
    line-height: 1.65;
    color: #6b6f74;
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__title,
body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__subtitle,
body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__tagline,
body.pds-cs-mockup-page .pds-cs-section-heading,
body.pds-cs-mockup-page .pds-cs-challenge__intro,
body.pds-cs-mockup-page .pds-cs-challenge__item-title,
body.pds-cs-mockup-page .pds-cs-challenge__item-desc,
body.pds-cs-mockup-page .pds-cs-solution__step-number,
body.pds-cs-mockup-page .pds-cs-solution__item-title,
body.pds-cs-mockup-page .pds-cs-solution__item-desc,
body.pds-cs-mockup-page .pds-cs-impact__value,
body.pds-cs-mockup-page .pds-cs-impact__label,
body.pds-cs-mockup-page .pds-cs-impact__desc,
body.pds-cs-mockup-page .pds-cs-verdict__quote {
    font-family: var(--pds-font) !important;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 300px;
    padding: 44px 30px 40px;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-heading {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: 0;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__intro {
    font-size: 18px;
    line-height: 1.58;
}

body.pds-cs-mockup-page .pds-cs-solution--mockup {
    padding: 0;
    background: #f4f4f2;
    border-top: 1px solid #d9dddf;
    border-bottom: 1px solid #d9dddf;
}

body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-container,
body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-container,
body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-container {
    padding-top: 48px;
    padding-bottom: 48px;
}

body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-cs-section-label,
body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-section-label,
body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-section-label {
    display: block;
    margin: 0 0 6px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00A19B;
}

body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-cs-solution__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup {
    position: relative;
    flex: 1 1 0;
    max-width: 330px;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #d9dddf;
    text-align: center;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup:first-child {
    border-radius: 8px 0 0 8px;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup:last-child {
    border-radius: 0 8px 8px 0;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup::before {
    display: none;
    content: none;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 14px solid #00A19B;
    z-index: 2;
}

body.pds-cs-mockup-page .pds-cs-solution__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: #00A19B;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.7px;
    font-weight: 800;
    line-height: 1;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup .pds-cs-solution__item-title {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #00A19B;
}

body.pds-cs-mockup-page .pds-cs-solution__item--mockup .pds-cs-solution__item-desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.1px;
    line-height: 1.65;
    color: #6b6f74;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup {
    padding: 0;
    background: #ffffff;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__card {
    position: relative;
    padding: 24px 20px;
    background: #ffffff;
    border: 2px solid #d9dddf;
    border-radius: 10px;
    overflow: hidden;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00A19B;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__value {
    margin: 0 0 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30.4px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    color: #00A19B;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__label {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.2px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2d2d2d;
}

body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.8px;
    line-height: 1.5;
    color: #6b6f74;
}

body.pds-cs-mockup-page .pds-cs-verdict--mockup {
    padding: 0;
    background: #f4f4f2;
    border-top: 1px solid #d9dddf;
    border-bottom: 1px solid #d9dddf;
}

body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-verdict__content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 880px;
    margin: 0 auto;
}

body.pds-cs-mockup-page .pds-cs-verdict__art {
    flex: 0 0 300px;
    width: 300px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border: 2px solid #d9dddf;
    border-radius: 10px;
    overflow: hidden;
}

body.pds-cs-mockup-page .pds-cs-verdict__svg {
    width: 100%;
    height: 100%;
}

body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-verdict__quote {
    position: relative;
    margin: 0;
    padding-left: 22px;
    border-left: 4px solid #00A19B;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.75;
    color: #6b6f74;
}

body.pds-cs-mockup-page .pds-cs-verdict__quote-mark {
    position: absolute;
    top: -20px;
    left: -6px;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(0, 161, 155, 0.2);
}

body.pds-cs-mockup-page .pds-cta-banner--mockup {
    padding: 0;
    background: #2d2d2d;
    color: #ffffff;
}

body.pds-cs-mockup-page .pds-cta-banner--mockup .pds-container {
    padding-top: 44px;
    padding-bottom: 32px;
    text-align: center;
}

body.pds-cs-mockup-page .pds-cta-banner--mockup .pds-cta-banner__title {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20.8px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

body.pds-cs-mockup-page .pds-cta-banner--mockup .pds-cta-banner__body {
    max-width: 640px;
    margin: 0 auto 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.1px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

body.pds-cs-mockup-page .pds-cta-banner--mockup .pds-cta-banner__ctas {
    justify-content: center;
    margin-bottom: 22px;
    padding-bottom: 0;
    border-bottom: 0;
}

body.pds-cs-mockup-page .pds-cta-banner__button {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 6px;
    background: #00A19B;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

body.pds-cs-mockup-page .pds-cta-banner__button:hover {
    background: #008b86;
    transform: translateY(-1px);
}

body.pds-cs-mockup-page .pds-cta-banner__footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

body.pds-cs-mockup-page .pds-cta-banner__footer-links a {
    color: #00A19B;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

body.pds-cs-mockup-page .pds-cta-banner__footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    body.pds-cs-mockup-page .elementor[data-elementor-type="wp-page"] {
        padding: 20px 0 32px;
    }

    body.pds-cs-mockup-page .pds-container {
        padding: 0 20px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-container,
    body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-container,
    body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-container,
    body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-container,
    body.pds-cs-mockup-page .pds-cta-banner--mockup .pds-container {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-container::after {
        left: 20px;
        right: 20px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero__top {
        justify-content: center;
        margin-bottom: 18px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero__logo {
        height: 44px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero__icon-svg {
        width: 60px;
        height: 60px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero--mockup .pds-cs-page-hero__title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero__image-wrap {
        margin-top: 32px;
    }

    body.pds-cs-mockup-page .pds-cs-page-hero__image {
        max-width: 100%;
        border-radius: 8px;
    }

    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__inner,
    body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-verdict__content {
        flex-direction: column;
    }

    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
        max-width: none;
        min-width: 0;
        width: 100%;
        padding: 28px 24px;
    }

    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__right {
        padding: 28px 0;
    }

    body.pds-cs-mockup-page .pds-cs-solution--mockup .pds-cs-solution__grid {
        flex-direction: column;
        gap: 14px;
    }

    body.pds-cs-mockup-page .pds-cs-solution__item--mockup,
    body.pds-cs-mockup-page .pds-cs-solution__item--mockup:first-child,
    body.pds-cs-mockup-page .pds-cs-solution__item--mockup:last-child {
        max-width: none;
        border-radius: 8px;
    }

    body.pds-cs-mockup-page .pds-cs-solution__item--mockup:not(:last-child)::after {
        display: none;
    }

    body.pds-cs-mockup-page .pds-cs-impact--mockup .pds-cs-impact__grid {
        grid-template-columns: 1fr;
    }

    body.pds-cs-mockup-page .pds-cs-verdict__art {
        width: 100%;
        max-width: 360px;
        flex-basis: auto;
    }

    body.pds-cs-mockup-page .pds-cs-verdict--mockup .pds-cs-verdict__quote {
        font-size: 15px;
    }

    body.pds-cs-mockup-page .pds-cta-banner__button {
        width: 100%;
        max-width: 320px;
    }
}

body.pds-cs-mockup-page .pds-cs-page-hero--mockup :is(h1, h2, h3, h4, p, a, li, span, strong),
body.pds-cs-mockup-page .pds-cs-challenge--mockup :is(h1, h2, h3, h4, p, a, li, span, strong),
body.pds-cs-mockup-page .pds-cs-solution--mockup :is(h1, h2, h3, h4, p, a, li, span, strong),
body.pds-cs-mockup-page .pds-cs-impact--mockup :is(h1, h2, h3, h4, p, a, li, span, strong),
body.pds-cs-mockup-page .pds-cs-verdict--mockup :is(h1, h2, h3, h4, p, a, li, span, strong),
body.pds-cs-mockup-page .pds-cta-banner--mockup :is(h1, h2, h3, h4, p, a, li, span, strong) {
    font-family: var(--pds-font) !important;
}

body.pds-cs-mockup-page .pds-cs-verdict__quote-mark {
    font-family: Georgia, serif !important;
}

/* ==========================================================================
   Service Page Widget (.pds-sp-*)
   ========================================================================== */

/* ── Shared ── */
.pds-sp-label {
    display: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pds-color-accent);
    margin: 0 0 12px;
}
.pds-sp-label--light {
    color: rgba(255, 255, 255, 0.7);
}
.pds-sp-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--pds-color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px;
    line-height: 1.2;
}
.pds-sp-section-heading--light {
    color: var(--pds-color-white);
}
.pds-sp-overview__left .pds-sp-section-heading {
    font-size: 36px;
    font-weight: 800;
}

/* ── Hero ── */
.pds-sp-hero {
    padding: 80px 0 48px;
    text-align: center;
    background: var(--pds-color-bg);
}
.pds-sp-hero__title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pds-color-text);
    margin: 0 0 16px;
    line-height: 1.1;
}
.pds-sp-hero__tagline {
    font-size: 18px;
    color: var(--pds-color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Overview (2-col: teal left + highlights right) ── */
.pds-sp-overview {
    padding: 0 0 var(--pds-section-py);
    margin-top: 48px;
}
.pds-sp-overview__inner {
    display: flex;
    gap: var(--pds-gap-lg);
    align-items: stretch;
    justify-content: center;
}
.pds-sp-overview__left {
    flex: 0 1 45%;
    max-width: 520px;
    background: var(--pds-color-accent);
    color: var(--pds-color-white);
    padding: 40px;
    border-radius: var(--pds-radius);
}
.pds-sp-overview__text {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.pds-sp-overview__text p {
    margin: 0 0 16px;
}
.pds-sp-overview__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}
.pds-sp-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--pds-color-bg);
    border: 1px solid var(--pds-color-border);
    border-left: 3px solid var(--pds-color-accent);
    border-radius: var(--pds-radius);
}
.pds-sp-highlight__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.12);
    color: var(--pds-color-accent);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}
.pds-sp-highlight__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--pds-color-text);
    line-height: 1.5;
}

/* ── Typical Scope (numbered grid) ── */
.pds-sp-scope {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
    text-align: center;
}
.pds-sp-scope__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pds-gap);
    margin-top: 32px;
    text-align: left;
}
.pds-sp-scope__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: var(--pds-color-bg);
    border-radius: var(--pds-radius);
    border: 1px solid var(--pds-color-border);
    transition: box-shadow var(--pds-transition);
}
.pds-sp-scope__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.pds-sp-scope__number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pds-color-accent);
    color: var(--pds-color-white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}
.pds-sp-scope__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--pds-color-text);
    line-height: 1.5;
    padding-top: 5px;
}

/* ── Best Fit For (light bg + bordered cards) ── */
.pds-sp-bestfit {
    padding: var(--pds-section-py) 0;
    background: var(--pds-color-bg-light);
    text-align: center;
}
.pds-sp-bestfit .pds-sp-label--light {
    color: var(--pds-color-accent);
}
.pds-sp-bestfit .pds-sp-section-heading--light {
    color: var(--pds-color-text);
}
.pds-sp-bestfit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pds-gap);
    margin-top: 32px;
    text-align: left;
}
.pds-sp-bestfit__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--pds-color-bg);
    border: 1px solid var(--pds-color-border);
    border-left: 3px solid var(--pds-color-accent);
    border-radius: var(--pds-radius);
    transition: box-shadow var(--pds-transition);
}
.pds-sp-bestfit__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.pds-sp-bestfit__icon {
    flex-shrink: 0;
    color: var(--pds-color-accent);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}
.pds-sp-bestfit__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--pds-color-text);
    line-height: 1.5;
}

/* ── CTA ── */
.pds-sp-cta {
    padding: var(--pds-section-py) 0;
    text-align: center;
    background: var(--pds-color-bg);
}
.pds-sp-cta__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--pds-color-text);
    margin: 0 0 16px;
}
.pds-sp-cta__text {
    font-size: 16px;
    color: var(--pds-color-text-light);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.pds-sp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Service Page Responsive ── */
@media (max-width: 991px) {
    .pds-sp-hero__title {
        font-size: 36px;
    }
    .pds-sp-scope__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pds-sp-hero {
        padding: 48px 0 32px;
    }
    .pds-sp-hero__title {
        font-size: 28px;
    }
    .pds-sp-hero__tagline {
        font-size: 16px;
    }
    .pds-sp-section-heading {
        font-size: 24px;
    }
    .pds-sp-overview__inner {
        flex-direction: column;
    }
    .pds-sp-overview__left {
        flex: none;
    }
    .pds-sp-scope__grid {
        grid-template-columns: 1fr;
    }
    .pds-sp-bestfit__grid {
        grid-template-columns: 1fr;
    }
    .pds-sp-cta__title {
        font-size: 24px;
    }
    .pds-sp-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .pds-sp-cta__buttons .pds-btn {
        width: 100%;
        max-width: 320px;
    }
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #14b8a6 !important;
    color: #ffffff !important;
}
a,body .page-content a{
    text-decoration: none;
}

/* PDF-guided service page adjustments */
.pds-sp-overview__service-name {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.pds-sp-side-heading {
    margin: 0 0 20px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--pds-color-text);
}
.pds-sp-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pds-sp-bullet-list li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--pds-color-text);
}
.pds-sp-bullet-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pds-color-accent);
}
.pds-sp-bullet-list li:last-child {
    margin-bottom: 0;
}
.pds-sp-bullet-list--bestfit {
    max-width: 820px;
}
.pds-sp-overview__inner {
    align-items: flex-start;
}
.pds-sp-overview__left {
    flex: 0 0 34%;
    max-width: 34%;
}
.pds-sp-overview__text {
    font-size: 18px;
    line-height: 1.65;
}
.pds-sp-overview__right {
    flex: 1 1 auto;
    padding: 18px 0 0 10px;
}
.pds-sp-scope {
    padding: 34px 0 10px;
    background: transparent;
    text-align: left;
}
.pds-sp-scope__list {
    max-width: 760px;
}
.pds-sp-scope__item {
    gap: 18px;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--pds-color-border);
    border-radius: 0;
}
.pds-sp-scope__item:hover {
    box-shadow: none;
}
.pds-sp-scope__number {
    width: auto;
    min-width: 28px;
    height: auto;
    padding-top: 4px;
    background: transparent;
    color: var(--pds-color-accent);
    border-radius: 0;
    font-size: 14px;
}
.pds-sp-scope__text {
    padding-top: 0;
    font-size: 15px;
    font-weight: 500;
}
.pds-sp-bestfit {
    padding: 18px 0 10px;
    background: transparent;
    text-align: left;
}
.pds-sp-bestfit .pds-sp-section-heading {
    color: var(--pds-color-text);
}
.pds-sp-cta {
    display: block;
    padding: 48px 0 0;
    text-align: center;
    background: transparent;
}
.pds-sp-cta__note {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pds-color-text-light);
}

/* About page cleanup */
.page-id-265 .elementor-element-036a188 .elementor-widget-image img,
.page-id-265 .elementor-element-239903b .elementor-widget-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center top;
}
.page-id-265 .elementor-element-036a188 .elementor-column > .elementor-widget-wrap,
.page-id-265 .elementor-element-239903b .elementor-column > .elementor-widget-wrap {
    align-items: center;
}
.page-id-265 .elementor-element-239903b .elementor-element-27dbc3b {
    display: none;
}
.page-id-265 .elementor-element-239903b .elementor-container {
    justify-content: center;
}

@media (max-width: 1024px) {
    .pds-case-studies--home .pds-case-studies__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pds-sp-overview__left {
        flex-basis: 34%;
        max-width: 34%;
    }
}

@media (max-width: 767px) {
    .pds-case-studies--home .pds-case-studies__grid {
        grid-template-columns: 1fr;
    }
    .pds-hero--home .pds-hero__ctas--home .pds-btn {
        width: 100%;
        justify-content: flex-start;
    }
    .pds-sp-overview__left {
        max-width: none;
    }
}

/* Follow-up PDF corrections */
.home .pds-about {
    background: var(--pds-color-bg-light);
    padding: 42px 0 34px;
}

.home .pds-hero--home {
    background: var(--pds-color-bg-light);
}
.home .pds-about__inner {
    position: relative;
    gap: 54px;
    align-items: flex-start;
    padding: 34px 40px 30px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}
.home .pds-about__main,
.home .pds-about__stat {
    position: relative;
    z-index: 1;
}
.home .pds-about__main {
    flex: 1 1 56%;
}
.home .pds-about__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.08;
    color: #7b7d80;
}
.home .pds-about__text {
    max-width: none;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.13;
    color: #7b7d80;
}
.home .pds-about__toggle {
    margin-top: 14px;
    color: #7b7d80;
    font-size: 11px;
    letter-spacing: 0.16em;
}
.home .pds-about__expanded-inner {
    max-width: none;
    font-size: 15px;
    line-height: 1.7;
    color: #63666a;
}
.home .pds-about__expanded-inner h3 {
    margin: 22px 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #2b2f34;
}
.home .pds-about__expanded-inner ul {
    margin: 0;
    padding-left: 18px;
}
.home .pds-about__expanded-inner li {
    margin: 0 0 6px;
}
.home .pds-about__stat {
    flex: 1 1 34%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.home .pds-about__stat p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.22;
    color: #7b7d80;
    margin: 0 0 26px;
}
.home .pds-about__stat p:last-child {
    margin-bottom: 0;
}
.home .pds-about__stat strong {
    font-weight: 600;
    color: inherit;
}

.pds-sp-section-heading,
.pds-sp-side-heading,
.pds-sp-overview__service-name {
    text-transform: none;
    letter-spacing: 0;
}
.pds-sp-overview {
    padding: 6px 0 24px;
}
.pds-sp-overview .pds-container,
.pds-sp-bestfit .pds-container,
.pds-sp-scope .pds-container {
    max-width: 1140px;
}
.pds-sp-overview__inner {
    gap: 0;
    align-items: stretch;
    background: #f1f3f6;
}
.pds-sp-overview__left {
    flex: 0 0 26%;
    max-width: 26%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 26px;
    background: #34aaa8;
}
.pds-sp-overview__service-name {
    margin: 0 0 18px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.pds-sp-overview__text {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.98);
}
.pds-sp-overview__text p {
    margin: 0;
}
.pds-sp-overview__right {
    padding: 18px 22px 16px;
    background: #f1f3f6;
}
.pds-sp-side-heading {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}
.pds-sp-overview .pds-sp-bullet-list,
.pds-sp-bestfit .pds-sp-bullet-list {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}
.pds-sp-overview .pds-sp-bullet-list li,
.pds-sp-bestfit .pds-sp-bullet-list li {
    padding: 0;
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.4;
    color: #111111;
}
.pds-sp-overview .pds-sp-bullet-list li::before,
.pds-sp-bestfit .pds-sp-bullet-list li::before {
    display: none;
}
.pds-sp-bestfit {
    padding: 0 0 18px;
}
.pds-sp-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}
.pds-sp-fit-column {
    min-width: 0;
    text-align: left;
}
.pds-sp-bestfit .pds-sp-section-heading,
.pds-sp-scope .pds-sp-section-heading {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: #2da9a7;
}
.pds-sp-scope {
    padding: 0 0 56px;
}
.pds-sp-scope__list {
    max-width: none;
}
.pds-sp-scope__item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 3px 0;
    border-bottom: 1px solid #dde2e7;
}
.pds-sp-scope__number {
    min-width: 0;
    padding-top: 0;
    font-size: 15px;
    font-weight: 700;
    color: #3f4347;
}
.pds-sp-scope__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #111111;
}

body.pds-cs-mockup-page .pds-cs-challenge--mockup {
    padding: 0 0 28px;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-container {
    max-width: 1140px;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__inner {
    gap: 0;
    border-top: 2px solid #63b7ba;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
    flex: 0 0 356px;
    max-width: 356px;
    min-width: 356px;
    padding: 26px 24px 24px;
    background: #34aaa8;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-heading {
    margin: 0 0 12px;
    font-family: var(--pds-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 0.98;
    text-transform: none;
    letter-spacing: 0;
    color: #ffffff;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__intro {
    font-family: var(--pds-font);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__right {
    padding: 24px 28px 18px 30px;
    gap: 18px;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item {
    gap: 14px;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item-icon {
    width: 32px;
    height: 32px;
    background: #69aead;
    border-radius: 6px;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item-title {
    margin: 0 0 3px;
    font-family: var(--pds-font);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: #2b2f34;
}
body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__item-desc {
    font-family: var(--pds-font);
    font-size: 13px;
    line-height: 1.45;
    color: #74787d;
}

@media (max-width: 1024px) {
    .home .pds-about__inner {
        gap: 36px;
        padding: 28px 30px;
    }
    .home .pds-about__text {
        font-size: 24px;
    }
    .home .pds-about__stat p {
        font-size: 16px;
    }
    .pds-sp-overview__left {
        flex-basis: 34%;
        max-width: 34%;
    }
    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
        flex-basis: 320px;
        max-width: 320px;
        min-width: 320px;
    }
}

@media (max-width: 767px) {
    .home .pds-about__inner {
        gap: 20px;
        padding: 24px 22px;
    }
    .home .pds-about__title {
        font-size: 20px;
    }
    .home .pds-about__text {
        font-size: 20px;
    }
    .home .pds-about__stat p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    .pds-sp-overview__inner,
    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__inner {
        display: block;
    }
    .pds-sp-overview__left {
        max-width: none;
    }
    .pds-sp-overview__right {
        padding: 18px 18px 16px;
    }
    .pds-sp-fit-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .pds-sp-scope__item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }
    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__left {
        max-width: none;
        min-width: 0;
    }
    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-challenge__right {
        padding: 18px 18px 8px;
    }
    body.pds-cs-mockup-page .pds-cs-challenge--mockup .pds-cs-section-heading {
        font-size: 28px;
    }
}

@media (max-width: 1200px) {
    .pds-hero--home .pds-hero__panel {
        min-height: 440px;
        padding: 72px 64px;
    }
    .pds-hero--home .pds-hero__panel-inner {
        max-width: 900px;
    }
    .pds-hero--home .pds-hero__title {
        font-size: clamp(38px, 4vw, 42px);
    }
    .pds-hero--home .pds-hero__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .pds-hero--home {
        padding-bottom: 28px;
    }
    .pds-hero--home .pds-hero__panel {
        min-height: auto;
        padding: 44px 24px 48px;
    }
    .pds-hero--home .pds-hero__panel-inner {
        max-width: none;
    }
    .pds-hero--home .pds-hero__title {
        font-size: 32px;
        max-width: none;
    }
    .pds-hero--home .pds-hero__subtitle {
        font-size: 20px;
        max-width: none;
    }
    .pds-hero--home .pds-hero__ctas--home {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 12px 0;
    }
}
