/* Nalashaa Digital — Power Platform Consulting landing page */
html:has(.nd-ppc) {
    scroll-behavior: smooth;
    overflow-x: clip;
}

html:has(.nd-ppc) body {
    overflow-x: clip;
}

.nd-ppc {
    --nd-blue: #2257d3;
    --nd-blue-dark: #263b8c;
    --nd-black: #242424;
    --nd-dark: #1d1d1d;
    --nd-grey: #6b7280;
    --nd-grey-3: #364153;
    --nd-border: #d6d6d6;
    --nd-card-border: #afceff;
    --nd-emphasis: #9dc3ff;
    --nd-light-bg: #f6f9ff;
    --nd-gradient: linear-gradient(125deg, #2257d3 0%, #263b8c 100%);
    --nd-container: 1148px;
    --nd-font-heading: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    --nd-font-body: Inter, Arial, sans-serif;
    font-family: var(--nd-font-body);
    color: var(--nd-black);
    line-height: 1.5;
    display: block;
    width: 100%;
    overflow: visible;
}

.nd-ppc *,
.nd-ppc *::before,
.nd-ppc *::after { box-sizing: border-box; }

.nd-ppc img,
.nd-ppc svg { max-width: 100%; display: block; }

.nd-ppc__container {
    width: min(100% - 32px, var(--nd-container));
    margin-inline: auto;
}

.nd-ppc h1,
.nd-ppc h2,
.nd-ppc h3,
.nd-ppc h4 { font-family: var(--nd-font-heading); font-weight: 700; margin: 0; }

.nd-ppc__eyebrow {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__eyebrow--dot {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: none;
    -webkit-text-fill-color: var(--nd-emphasis);
    color: var(--nd-emphasis);
}

.nd-ppc__eyebrow--dot::before {
    content: "";
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    background: var(--nd-emphasis);
}

.nd-ppc__h1 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.26;
    letter-spacing: -0.3px;
    color: var(--nd-black);
}

.nd-ppc__h1-gradient {
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__h2 {
    font-size: clamp(28px, 3.5vw, 34px);
    line-height: 1.29;
    letter-spacing: -0.09px;
    color: var(--nd-black);
}

.nd-ppc__h2-gradient {
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__lead {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 28px;
    color: var(--nd-grey);
    margin: 0;
}

.nd-ppc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nd-ppc__btn--primary {
    background: var(--nd-gradient);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.nd-ppc__btn--primary:hover,
.nd-ppc__btn--primary:focus,
.nd-ppc__btn--primary:active { color: #fff; text-decoration: none; }

.nd-ppc__btn--outline {
    background: #fff;
    color: var(--nd-blue);
    border: 2px solid var(--nd-blue);
    box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
}

.nd-ppc__btn--outline:hover,
.nd-ppc__btn--outline:focus { color: var(--nd-blue-dark); text-decoration: none; }

.nd-ppc__btn--white {
    background: #fff;
    color: var(--nd-black);
    border-radius: 10px;
}

.nd-ppc__btn--white:hover,
.nd-ppc__btn--white:focus { color: var(--nd-black); text-decoration: none; }

.nd-ppc__btn:hover { transform: translateY(-2px); }
.nd-ppc__btn:focus-visible { outline: 2px solid var(--nd-blue); outline-offset: 2px; }

.nd-ppc__reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.nd-ppc__reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ------------------------------------------------------------------ Hero */
.nd-ppc__hero {
    position: relative;
    background: linear-gradient(134.57deg, rgba(34, 87, 211, 0.08) 0%, rgba(128, 163, 245, 0.12) 50%, #fff 100%);
    padding: 48px 0 0;
    overflow: hidden;
}

.nd-ppc__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 40px;
}

.nd-ppc__hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 48px;
}

.nd-ppc__hero-copy .nd-ppc__lead { color: var(--nd-grey-3); }

.nd-ppc__hero-stack {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: var(--nd-grey-3);
}

.nd-ppc__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.nd-ppc__hero-reply {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 22px;
    color: #05114b;
}

.nd-ppc__hero-reply img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nd-ppc__hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 480px;
}

.nd-ppc__hero-hub {
    width: min(540px, 100%);
    height: auto;
    max-width: 100%;
    pointer-events: none;
}

.nd-ppc__hero-stats {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.1);
    padding: 22px 0 24px;
}

.nd-ppc__hero-stats-grid {
    width: min(100% - 32px, var(--nd-container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.nd-ppc__hero-stat-value {
    font-family: var(--nd-font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__hero-stat-label {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: var(--nd-black);
}

/* -------------------------------------------------------------- Problems */
.nd-ppc__problems {
    padding: 80px 0 72px;
    background: #fff;
}

.nd-ppc__problems .nd-ppc__h2 { max-width: 997px; margin-bottom: 16px; }
.nd-ppc__problems .nd-ppc__lead { max-width: 700px; margin-bottom: 48px; }

.nd-ppc__problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.nd-ppc__problem-card {
    background: #fff;
    border: 1px solid var(--nd-card-border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 3px 4px 14.1px rgba(121, 121, 121, 0.13);
    min-height: 230px;
}

.nd-ppc__problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(122deg, rgba(34, 87, 211, 0.08) 0%, rgba(128, 163, 245, 0.12) 50%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: clip;
}

.nd-ppc__problem-icon img {
    width: 24px;
    height: 24px;
}

.nd-ppc__problem-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
    color: #0f172b;
}

.nd-ppc__problem-card p {
    margin: 0;
    font-size: 14px;
    line-height: 22.75px;
    color: #45556c;
}

/* ----------------------------------------------------------------- CTA 1 */
.nd-ppc__sweep {
    position: relative;
    overflow: hidden;
    background: linear-gradient(119deg, #2257d3 5%, #131b3c 105%);
    padding: 88px 0;
    text-align: center;
}

.nd-ppc__sweep-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.7;
}

.nd-ppc__sweep-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.nd-ppc__sweep h2 {
    color: #fff;
    font-size: clamp(28px, 3.8vw, 38px);
    line-height: 1.32;
    letter-spacing: -0.8px;
    max-width: 621px;
}

.nd-ppc__sweep .nd-ppc__btn img {
    width: 20px;
    height: 20px;
}

/* ------------------------------------------------------------------ Tools */
.nd-ppc__tools {
    padding: 72px 0 88px;
    background: #fff;
}

.nd-ppc__tools .nd-ppc__h2 { margin-bottom: 16px; }
.nd-ppc__tools .nd-ppc__lead { max-width: 976px; margin-bottom: 48px; }

.nd-ppc__tools-layout {
    display: grid;
    grid-template-columns: minmax(0, 401px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.nd-ppc__tool-tabs {
    display: flex;
    flex-direction: column;
}

.nd-ppc__tool-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 76px;
    padding: 18px 24px 18px 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    line-height: 25px;
    color: var(--nd-grey);
    cursor: pointer;
}

.nd-ppc__tool-tab.is-active {
    background: rgba(125, 179, 255, 0.13);
    border-bottom: 3px solid var(--nd-blue);
    font-weight: 600;
    color: transparent;
    background-image: linear-gradient(rgba(125, 179, 255, 0.13), rgba(125, 179, 255, 0.13));
}

.nd-ppc__tool-tab.is-active .nd-ppc__tool-tab-label {
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__tool-tab-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0;
}

.nd-ppc__tool-tab.is-active .nd-ppc__tool-tab-icon { opacity: 1; }

.nd-ppc__tool-tab-icon img {
    width: 24px;
    height: 24px;
}

.nd-ppc__tool-panel {
    background: rgba(238, 239, 240, 0.59);
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 40px;
}

.nd-ppc__tool-panel h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
}

.nd-ppc__tool-panel > p {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--nd-grey-3);
}

.nd-ppc__tool-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nd-ppc__tool-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--nd-grey-3);
}

.nd-ppc__tool-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--nd-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-ppc__tool-check img {
    width: 16px;
    height: 16px;
}

.nd-ppc__tool-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__tool-more:hover { text-decoration: none; }

.nd-ppc__tool-more img {
    width: 20px;
    height: 20px;
}

.nd-ppc__tool-panel > p + .nd-ppc__tool-more {
    margin-top: 8px;
}

/* ---------------------------------------------------------- Testimonials */
.nd-ppc__quotes {
    padding: 72px 0;
    background: #fff;
    overflow: hidden;
}

.nd-ppc__quotes .nd-ppc__h2 {
    text-align: center;
    margin-bottom: 40px;
}

.nd-ppc__quotes-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.nd-ppc__quotes-track {
    display: flex;
    gap: 38px;
    width: max-content;
    padding: 8px 0 24px;
    will-change: transform;
}

.nd-ppc__quote-card {
    flex: 0 0 363px;
    width: 363px;
    min-height: 339px;
    border: 1px solid #c9c9c9;
    border-radius: 16px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.71);
    box-shadow: 1px 4px 27.1px -1px rgba(85, 85, 85, 0.1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nd-ppc__quote-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.nd-ppc__quote-card blockquote {
    margin: 0;
    flex: 1;
    font-size: 16px;
    font-style: italic;
    line-height: 25px;
    color: var(--nd-grey);
}

.nd-ppc__quote-card hr {
    border: 0;
    border-top: 1px solid #d6d6d6;
    margin: 0;
}

.nd-ppc__quote-logo {
    max-height: 46px;
    width: auto;
    max-width: 138px;
    object-fit: contain;
    object-position: left center;
}

.nd-ppc__quote-client {
    margin: 0;
    font-family: var(--nd-font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: var(--nd-black);
}

/* ------------------------------------------------------ Starting points */
.nd-ppc__starts {
    background: linear-gradient(179.08deg, #333 31.44%, #000 98.76%);
    padding: 72px 0 100px;
}

.nd-ppc__starts-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.nd-ppc__starts-intro {
    position: sticky;
    top: 110px;
}

.nd-ppc__starts-intro .nd-ppc__eyebrow { color: var(--nd-emphasis); background: none; -webkit-text-fill-color: var(--nd-emphasis); }
.nd-ppc__starts-intro .nd-ppc__h2 { color: #fff; margin-bottom: 20px; }
.nd-ppc__starts-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.nd-ppc__starts-right {
    position: relative;
    padding-left: 48px;
}

.nd-ppc__starts-track {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 5px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.nd-ppc__starts-progress {
    width: 100%;
    height: 18%;
    background: var(--nd-gradient);
}

.nd-ppc__starts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.nd-ppc__starts-num {
    display: block;
    font-family: var(--nd-font-heading);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.nd-ppc__starts-item h3 {
    margin: 8px 0 12px;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: rgba(225, 225, 225, 0.6);
}

.nd-ppc__starts-item p {
    margin: 0;
    max-width: 503px;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.5);
}

.nd-ppc__starts-item.is-active .nd-ppc__starts-num {
    -webkit-text-stroke: 0;
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__starts-item.is-active h3 { color: #fff; }
.nd-ppc__starts-item.is-active p { color: rgba(255, 255, 255, 0.96); }

/* -------------------------------------------------------------- Services */
.nd-ppc__services {
    padding: 80px 0;
    background: #fff;
}

.nd-ppc__services .nd-ppc__lead { max-width: 820px; margin: 16px 0 48px; }

.nd-ppc__services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.nd-ppc__service-card {
    background: #fff;
    border: 1px solid var(--nd-card-border);
    border-radius: 14px;
    padding: 25px;
    box-shadow: 3px 4px 14.1px rgba(121, 121, 121, 0.13);
    min-height: 243px;
}

.nd-ppc__service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(122deg, rgba(34, 87, 211, 0.08) 0%, rgba(128, 163, 245, 0.12) 50%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: clip;
}

.nd-ppc__service-icon img {
    width: 24px;
    height: 24px;
}

.nd-ppc__service-card h3 {
    font-family: var(--nd-font-body);
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    color: #0f172b;
    margin-bottom: 12px;
}

.nd-ppc__service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 22.75px;
    color: #45556c;
}

/* ----------------------------------------------------------------- CTA 2 */
.nd-ppc__help {
    position: relative;
    overflow: hidden;
    background: var(--nd-gradient);
    padding: 56px 0;
}

.nd-ppc__help-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.55;
}

.nd-ppc__help-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 475px);
    gap: 40px;
    align-items: center;
}

.nd-ppc__help-copy h2 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
}

.nd-ppc__help-copy p {
    margin: 0 0 32px;
    max-width: 413px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.nd-ppc__help .nd-ppc__btn {
    gap: 12px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
}

.nd-ppc__help .nd-ppc__btn img {
    width: 40px;
    height: 40px;
}

.nd-ppc__help-visual {
    position: relative;
    min-height: 320px;
}

.nd-ppc__help-ghost,
.nd-ppc__help-solid {
    position: absolute;
    border-radius: 16px;
}

.nd-ppc__help-ghost {
    width: 206px;
    height: 239px;
    left: 0;
    top: 56px;
    transform: rotate(-12deg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px;
}

.nd-ppc__help-ghost span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 12px;
}

.nd-ppc__help-ghost strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.nd-ppc__help-ghost i {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    font-style: normal;
}

.nd-ppc__help-solid {
    width: 250px;
    height: 280px;
    right: 0;
    top: 0;
    transform: rotate(5deg);
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 30px -4px rgba(0, 0, 0, 0.22);
}

.nd-ppc__help-solid span {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    background: #e7edf8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    background-image: none;
    margin-bottom: 16px;
}

.nd-ppc__help-solid span em {
    font-style: normal;
    background: var(--nd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nd-ppc__help-solid strong {
    display: block;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 8px;
}

.nd-ppc__help-solid p {
    margin: 0 0 16px;
    font-size: 12.5px;
    color: var(--nd-grey);
}

.nd-ppc__help-solid i {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #e7e9ee;
    margin-bottom: 10px;
    font-style: normal;
}

.nd-ppc__help-ready {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 20px;
    background: var(--nd-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
}

.nd-ppc__help-arrow {
    position: absolute;
    left: 38%;
    top: 18px;
    width: 126px;
    height: auto;
    z-index: 2;
}

/* ---------------------------------------------------------- Case studies */
.nd-ppc__cases {
    padding: 64px 0 80px;
    background: #fff;
}

.nd-ppc__cases .nd-ppc__h2 {
    text-align: center;
    margin-bottom: 40px;
}

.nd-ppc__cases-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 510px;
}

.nd-ppc__case {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 20px;
    min-height: 240px;
    text-decoration: none;
    color: #fff;
}

.nd-ppc__case:hover { color: #fff; text-decoration: none; }

.nd-ppc__case--feature {
    grid-row: 1 / span 2;
    min-height: 510px;
}

.nd-ppc__case img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-ppc__case::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(2deg, rgba(0, 0, 0, 0.83) 18%, rgba(102, 102, 102, 0) 98%);
}

.nd-ppc__case-body {
    position: relative;
    z-index: 1;
    padding: 24px 32px;
}

.nd-ppc__case-kicker {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--nd-emphasis);
    letter-spacing: 0.04em;
}

.nd-ppc__case h3 {
    font-family: var(--nd-font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.nd-ppc__case:not(.nd-ppc__case--feature) h3 {
    font-size: 14px;
    line-height: 22px;
}

/* ------------------------------------------------------------ Industries */
.nd-ppc__industries {
    background: var(--nd-dark);
    padding: 64px 0 80px;
}

.nd-ppc__industries-head {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 600px);
    gap: 24px;
    align-items: end;
    margin-bottom: 48px;
}

.nd-ppc__industries-head .nd-ppc__h2 { color: #fff; }
.nd-ppc__industries-head p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: #ebebeb;
}

.nd-ppc__industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nd-ppc__industry-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #797979;
    border-radius: 6px;
    padding: 20px;
    min-height: 213px;
    box-shadow: 0 8px 26.1px rgba(97, 92, 92, 0.1);
}

.nd-ppc__industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: clip;
}

.nd-ppc__industry-icon img {
    width: 24px;
    height: 24px;
}

.nd-ppc__industry-card h3 {
    font-family: var(--nd-font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: #fafafa;
    margin-bottom: 12px;
}

.nd-ppc__industry-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 20px;
    color: #fff;
    opacity: 0.75;
}

/* ------------------------------------------------------------- Trusted by */
.nd-ppc__trusted {
    padding: 72px 0 64px;
    background: #f8f8f8;
    text-align: center;
}

.nd-ppc__trusted-eyebrow {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2b5dd3;
}

.nd-ppc__trusted-title {
    margin: 0 0 32px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.nd-ppc__trusted-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
}

.nd-ppc__trusted-logos li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    flex: 1 1 140px;
}

.nd-ppc__trusted-logos img {
    max-height: 36px;
    width: auto;
    max-width: 184px;
    object-fit: contain;
    opacity: 0.85;
}

.nd-ppc__trusted-logos span {
    font-family: var(--nd-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: -0.047px;
    color: #000;
    opacity: 0.85;
}

/* -------------------------------------------------------- Why choose us */
.nd-ppc__why {
    padding: 80px 0;
    background: #fff;
}

.nd-ppc__why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.nd-ppc__why-intro {
    padding: 8px 40px 32px 0;
}

.nd-ppc__why-intro .nd-ppc__h2 { max-width: 389px; }

.nd-ppc__why-item,
.nd-ppc__why-spacer {
    padding: 28px 32px 36px;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

.nd-ppc__why-intro,
.nd-ppc__why-item:nth-child(2),
.nd-ppc__why-item:nth-child(3) {
    border-top: 0;
}

.nd-ppc__why-intro,
.nd-ppc__why-spacer,
.nd-ppc__why-item:nth-child(7) {
    border-left: 0;
}

.nd-ppc__why-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
    overflow: clip;
}

.nd-ppc__why-icon img {
    width: 26px;
    height: 26px;
}

.nd-ppc__why-item h3 {
    font-family: var(--nd-font-body);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--nd-black);
    margin: 0 0 12px;
}

.nd-ppc__why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    color: var(--nd-grey-3);
}

/* ------------------------------------------------------------------- FAQ */
.nd-ppc__faq {
    padding: 72px 0 80px;
    background: var(--nd-light-bg);
    position: relative;
    overflow: hidden;
}

.nd-ppc__faq-deco {
    position: absolute;
    top: -80px;
    right: -120px;
    width: min(50vw, 480px);
    height: auto;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

.nd-ppc__faq-deco--mask {
    top: auto;
    bottom: -100px;
    left: -80px;
    right: auto;
    opacity: 0.4;
}

.nd-ppc__faq-inner {
    position: relative;
    z-index: 1;
    max-width: 862px;
    margin: 0 auto;
}

.nd-ppc__faq .nd-ppc__h2 { text-align: center; }

.nd-ppc__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.nd-ppc__faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 12px rgba(149, 157, 165, 0.15);
    overflow: hidden;
}

.nd-ppc__faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 0;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--nd-black);
    cursor: pointer;
}

.nd-ppc__faq-chevron {
    width: 13px;
    height: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nd-ppc__faq-item.is-open .nd-ppc__faq-chevron { transform: rotate(180deg); }

.nd-ppc__faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.nd-ppc__faq-item.is-open .nd-ppc__faq-a { max-height: 1200px; }

.nd-ppc__faq-a p {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 15px;
    line-height: 24px;
    color: var(--nd-grey);
}

.nd-ppc__faq-a p:last-child { padding-bottom: 20px; }

/* -------------------------------------------------------------- Explore */
.nd-ppc__explore {
    padding: 64px 0 88px;
    background: #fff;
}

.nd-ppc__explore .nd-ppc__h2 { text-align: center; }
.nd-ppc__explore .nd-ppc__lead {
    text-align: center;
    margin: 12px auto 40px;
    max-width: 900px;
}

.nd-ppc__explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nd-ppc__explore-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    background: #fff;
    min-height: 500px;
}

.nd-ppc__explore-card:hover { text-decoration: none; color: inherit; }

.nd-ppc__explore-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.nd-ppc__explore-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-ppc__explore-badge {
    position: absolute;
    top: 8px;
    left: 9px;
    padding: 5px 31px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
}

.nd-ppc__explore-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nd-ppc__explore-meta {
    font-size: 14px;
    color: var(--nd-grey);
    margin-bottom: 12px;
}

.nd-ppc__explore-card h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
}

.nd-ppc__explore-card p {
    margin: 0 0 auto;
    font-size: 15px;
    line-height: 24px;
    color: var(--nd-grey);
}

.nd-ppc__read-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nd-blue);
}

/* Form section — uses nd-home classes from home-new.css (not duplicated here) */
.nd-ppc .nd-home {
    overflow: visible;
}

/* ------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
    .nd-ppc__hero-grid,
    .nd-ppc__tools-layout,
    .nd-ppc__starts-grid,
    .nd-ppc__help-grid,
    .nd-ppc__industries-head,
    .nd-ppc__cases-grid {
        grid-template-columns: 1fr;
    }

    .nd-ppc__why-grid { grid-template-columns: 1fr 1fr; }

    .nd-ppc__hero-visual {
        min-height: 360px;
        justify-content: center;
    }
    .nd-ppc__hero-hub { width: min(420px, 100%); }
    .nd-ppc__hero-copy { padding-top: 8px; }
    .nd-ppc__why-spacer { display: none; }
    .nd-ppc__why-intro {
        grid-column: 1 / -1;
        padding: 0 0 24px;
        border: 0;
    }
    .nd-ppc__why-item {
        border-left: 0;
        padding: 24px 0;
    }
    .nd-ppc__why-item:nth-child(2),
    .nd-ppc__why-item:nth-child(3) { border-top: 1px solid #e5e7eb; }
    .nd-ppc__starts-intro { position: static; }
    .nd-ppc__help-visual { min-height: 280px; justify-self: center; width: 100%; max-width: 420px; }
    .nd-ppc__case--feature { grid-row: auto; min-height: 320px; }
    .nd-ppc__cases-grid { grid-template-rows: none; }
    .nd-ppc__services-grid,
    .nd-ppc__industries-grid,
    .nd-ppc__explore-grid { grid-template-columns: 1fr 1fr; }
    .nd-ppc__hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 720px) {
    .nd-ppc__problems-grid,
    .nd-ppc__services-grid,
    .nd-ppc__industries-grid,
    .nd-ppc__explore-grid,
    .nd-ppc__why-grid { grid-template-columns: 1fr; }

    .nd-ppc__hero-visual { min-height: 280px; }
    .nd-ppc__hero-actions { flex-direction: column; align-items: stretch; }
    .nd-ppc__btn { width: 100%; }
    .nd-ppc__tool-panel { padding: 24px; }
    .nd-ppc__quote-card { flex-basis: 300px; width: 300px; }
    .nd-ppc__help-ghost { display: none; }
    .nd-ppc__help-solid { position: relative; transform: none; right: auto; }
    .nd-ppc__help-arrow { display: none; }
    .nd-ppc__trusted-logos { justify-content: center; }
    .nd-ppc__trusted-logos li { flex: 1 1 45%; }
}
