/* ==========================================================================
   Planorama Design: Custom Styles (Bootstrap 5.3 Override & Extensions)
   Modern light-mode aesthetic, 2026
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --pl-teal: #0d9488;
    --pl-teal-dark: #0f766e;
    --pl-teal-light: #ccfbf1;
    --pl-teal-50: #f0fdfa;
    --pl-orange: #e8612d;
    --pl-orange-dark: #c2410c;
    --pl-orange-light: #fff7ed;

    /* Neutrals */
    --pl-slate-900: #0f172a;
    --pl-slate-800: #1e293b;
    --pl-slate-700: #334155;
    --pl-slate-600: #475569;
    --pl-slate-500: #64748b;
    --pl-slate-400: #94a3b8;
    --pl-slate-300: #cbd5e1;
    --pl-slate-200: #e2e8f0;
    --pl-slate-100: #f1f5f9;
    --pl-slate-50: #f8fafc;
    --pl-white: #ffffff;

    /* Typography */
    --pl-font-heading: "Inter", system-ui, -apple-system, sans-serif;
    --pl-font-body: "Inter", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-py: 6rem;
    --section-py-sm: 4rem;

    /* Transitions */
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base / Reset ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pl-font-body);
    color: var(--pl-slate-700);
    background-color: var(--pl-white);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--pl-font-heading);
    color: var(--pl-slate-900);
    font-weight: 700;
    line-height: 1.25;
}

h1,
.h1 {
    /* font-size: clamp(2.25rem, 5vw, 3.5rem); */
    font-size: clamp(3rem, 6vw, 5rem);
}
h2,
.h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}
h3,
.h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
}
h4,
.h4 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--pl-slate-600);
    line-height: 1.75;
    font-weight: 400;
}

.overline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pl-teal);
}

/* ---------- Navbar ---------- */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition:
        background var(--transition-base),
        box-shadow var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--pl-slate-900) !important;
    letter-spacing: -0.02em;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.navbar-brand span {
    color: var(--pl-teal);
}

.navbar .nav-link {
    color: var(--pl-slate-600);
    font-weight: 500;
    font-size: 0.925rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    transition: color var(--transition-base);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--pl-teal);
}

.navbar .nav-link.active {
    color: var(--pl-teal);
    position: relative;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--pl-teal);
    border-radius: 1px;
}

.btn-nav-cta {
    background-color: var(--pl-teal);
    color: var(--pl-white) !important;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.925rem;
    transition:
        background var(--transition-base),
        transform var(--transition-base);
}

.btn-nav-cta:hover {
    background-color: var(--pl-teal-dark);
    color: var(--pl-white) !important;
    transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn-primary-pl {
    background-color: var(--pl-teal);
    color: var(--pl-white);
    border: 2px solid var(--pl-teal);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.btn-primary-pl:hover {
    background-color: var(--pl-teal-dark);
    border-color: var(--pl-teal-dark);
    color: var(--pl-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.25);
}

.btn-outline-pl {
    background-color: transparent;
    color: var(--pl-teal);
    border: 2px solid var(--pl-teal);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.btn-outline-pl:hover {
    background-color: var(--pl-teal);
    color: var(--pl-white);
    transform: translateY(-2px);
}

.btn-orange-pl {
    background-color: var(--pl-orange);
    color: var(--pl-white);
    border: 2px solid var(--pl-orange);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-orange-pl:hover {
    background-color: var(--pl-orange-dark);
    border-color: var(--pl-orange-dark);
    color: var(--pl-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 97, 45, 0.25);
}

/* ---------- Sections ---------- */
.section {
    padding: var(--section-py) 0;
}

.section-sm {
    padding: var(--section-py-sm) 0;
}

/* ---------- Client Logo Strip ---------- */
.logo-strip {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--pl-slate-200);
    background: var(--pl-white);
    text-align: center;
}

.logo-strip-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pl-slate-400);
    margin-bottom: 1rem;
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.logo-strip-inner img {
    height: 28px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition:
        opacity 0.2s ease,
        filter 0.2s ease;
}

.logo-strip-inner img:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

@media (min-width: 768px) {
    .logo-strip-inner {
        gap: 4.5rem;
    }
}

@media (max-width: 575.98px) {
    .logo-strip {
        padding: 1.25rem 0;
    }

    .logo-strip-heading {
        margin-bottom: 0.75rem;
    }

    .logo-strip-inner {
        gap: 1.25rem 2rem;
    }

    .logo-strip-inner img {
        height: 22px;
    }
}

.bg-light-teal {
    background-color: var(--pl-teal-50);
}

/* Section with static background image */
.section-bg-image {
    position: relative;
    overflow: hidden;
    background: var(--pl-slate-900);
}

.section-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--section-bg-image) center / cover no-repeat;
    z-index: 0;
}

.section-bg-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.35) 100%
    );
    z-index: 1;
}

.section-bg-image > .container {
    position: relative;
    z-index: 2;
}

.section-bg-image h2 {
    color: var(--pl-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.section-bg-image .overline {
    color: var(--pl-teal-light);
}

.bg-light-warm {
    background-color: var(--pl-orange-light);
}

.bg-slate {
    background-color: var(--pl-slate-900);
    color: var(--pl-slate-200);
}

.bg-slate h2,
.bg-slate h3,
.bg-slate h4 {
    color: var(--pl-white);
}

.bg-slate .overline {
    color: var(--pl-teal-light);
}

/* How We Work tagline */
.hww-tagline-wrap {
    text-align: center;
}

.hww-tagline {
    display: inline-block;
    text-align: center;
}

.hww-tagline p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pl-white);
    margin-bottom: 0.2rem;
    line-height: 1.45;
}

.hww-tagline p:last-child {
    color: var(--pl-orange);
}

.bg-soft {
    background-color: var(--pl-slate-50);
}

/* ---------- Section Nav (sticky page-level navigation) ---------- */
.section-nav {
    background: var(--pl-white);
    border-bottom: 1px solid var(--pl-slate-200);
    position: sticky;
    top: 80px; /* navbar height */
    z-index: 1020;
    transition: box-shadow 0.2s ease;
}

.section-nav.is-stuck {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.section-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pl-slate-500);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-base);
}

.section-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pl-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.section-nav-link:hover {
    color: var(--pl-slate-900);
}

.section-nav-link.is-active {
    color: var(--pl-teal-dark);
}

.section-nav-link.is-active::after {
    transform: scaleX(1);
}

@media (max-width: 575.98px) {
    .section-nav {
        top: 75px; /* smaller navbar on mobile */
    }
    .section-nav-list {
        gap: 1.25rem;
    }
    .section-nav-link {
        font-size: 0.8rem;
    }
}

/* ---------- Hero ---------- */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(
        170deg,
        var(--pl-white) 0%,
        var(--pl-teal-50) 50%,
        var(--pl-white) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(13, 148, 136, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Hero variant: background image */
.hero-bg {
    background: var(--pl-slate-900);
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: var(--hero-bg-image) center / cover no-repeat;
    animation: heroPan 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroPan {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-4%, -2.5%);
    }
    50% {
        transform: translate(-1%, -4%);
    }
    75% {
        transform: translate(-4.5%, -1%);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero-bg::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.75) 55%,
        rgba(15, 23, 42, 0.3) 100%
    );
    border-radius: 0;
    z-index: 1;
}

.hero-bg > .container {
    position: relative;
    z-index: 2;
}

.hero-bg h1 {
    color: var(--pl-white);
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-bg .text-teal {
    color: var(--pl-teal-light);
    text-shadow:
        0 2px 16px rgba(13, 148, 136, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-bg .lead {
    color: var(--pl-slate-200);
}

.hero-bg .btn-outline-pl {
    color: var(--pl-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-bg .btn-outline-pl:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pl-white);
}

.hero-bg .hero-proof-item {
    color: var(--pl-slate-300);
}

.hero-bg .hero-proof-item i {
    color: var(--pl-teal-light);
}

.hero-bg .hero-proof-strip {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 640px;
}

.hero-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--pl-slate-200);
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pl-slate-600);
}

.hero-proof-item svg {
    flex-shrink: 0;
    color: var(--pl-teal);
}

/* ---------- Pain / "Sound Familiar?" Cards ---------- */
.pain-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pl-teal);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pain-card:hover {
    border-color: var(--pl-teal);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.08);
    transform: translateY(-3px);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pl-slate-900);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.pain-card p {
    font-size: 0.925rem;
    color: var(--pl-slate-600);
    margin-bottom: 0;
    line-height: 1.65;
}

/* Pain card: clickable / active states */
.pain-card[role="button"] {
    cursor: pointer;
    user-select: none;
}

.pain-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--pl-teal);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base);
}

.pain-card:hover .pain-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.pain-card.is-active {
    border-color: var(--pl-teal);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.12);
    background: var(--pl-teal-50);
}

.pain-card.is-active::before {
    opacity: 1;
}

.pain-card.is-active .pain-card-cta {
    opacity: 1;
    transform: translateY(0);
    color: var(--pl-teal-dark);
}

.pain-card.is-active .pain-card-cta i {
    animation: bounceDown 1s ease infinite;
}

@keyframes bounceDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* ---------- Pain Detail Panel ---------- */
.pain-detail-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding: 0 2.5rem;
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    border: none;
    border-radius: 20px;
    position: relative;
    color: var(--pl-white);
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        margin-top 0.4s ease,
        padding 0.4s ease;
}

.pain-detail-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 180%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.pain-detail-panel.is-open {
    max-height: 600px;
    opacity: 1;
    margin-top: 2.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.35);
}

.pain-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.pain-detail-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pl-white);
}

.pain-detail-panel .overline {
    color: rgba(255, 255, 255, 0.7);
}

.pain-detail-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    color: var(--pl-white);
}

.pain-detail-panel p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pain-detail-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.pain-detail-deliverables span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pl-teal-light, #5eead4);
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    backdrop-filter: blur(4px);
}

.pain-detail-proof {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(4px);
}

.pain-detail-proof .proof-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.pain-detail-proof h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--pl-white);
}

.pain-detail-proof p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.pain-detail-proof .proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pl-teal-light, #5eead4);
    text-decoration: none;
    transition:
        gap var(--transition-base),
        color var(--transition-base);
}

.pain-detail-proof .proof-link:hover {
    color: var(--pl-white);
    gap: 0.7rem;
}

@media (max-width: 991.98px) {
    .pain-detail-panel.is-open {
        max-height: 1200px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .pain-detail-panel.is-open {
        max-height: 1600px;
        padding: 1.5rem 1.25rem;
    }
}

/* ---------- Differentiator Cards ---------- */
.diff-card {
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    transition: all var(--transition-base);
}

.diff-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.diff-card .diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--pl-teal-50);
    color: var(--pl-teal);
}

.diff-card h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--pl-slate-600);
}

/* ---------- Accordion (reusable) ---------- */
.pl-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pl-accordion-item {
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.pl-accordion-item.is-open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pl-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    color: var(--pl-slate-900);
    font-family: inherit;
    transition: background 0.15s ease;
}

.pl-accordion-trigger:hover {
    background: var(--pl-slate-50);
}

.pl-accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pl-teal-50);
    color: var(--pl-teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pl-accordion-item.is-open .pl-accordion-icon {
    background: var(--pl-teal);
    color: var(--pl-white);
}

.pl-accordion-title {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
}

.pl-accordion-chevron {
    font-size: 0.85rem;
    color: var(--pl-slate-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pl-accordion-item.is-open .pl-accordion-chevron {
    transform: rotate(180deg);
    color: var(--pl-teal);
}

.pl-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s ease;
    padding: 0 1.5rem 0 calc(40px + 2.5rem);
}

.pl-accordion-item.is-open .pl-accordion-body {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem calc(40px + 2.5rem);
}

.pl-accordion-body p {
    font-size: 0.95rem;
    color: var(--pl-slate-600);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 575.98px) {
    .pl-accordion-trigger {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .pl-accordion-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .pl-accordion-title {
        font-size: 0.95rem;
    }

    .pl-accordion-body {
        padding: 0 1.25rem 0 calc(36px + 2rem);
    }

    .pl-accordion-item.is-open .pl-accordion-body {
        padding: 0 1.25rem 1.25rem calc(36px + 2rem);
    }
}

/* ---------- Service Blocks ---------- */
.service-block {
    padding: 3rem;
    border-radius: 16px;
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    transition: all var(--transition-base);
    height: 100%;
}

.service-block:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-block .service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pl-teal-light);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--pl-font-heading);
}

.service-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-block p {
    color: var(--pl-slate-600);
    font-size: 0.95rem;
}

.deliverables span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pl-teal-dark);
    background: var(--pl-teal-50);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    margin: 0.2rem;
}

.service-block .deliverables {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pl-slate-100);
}

/* ---------- Service Block Links (index.html clickable cards) ---------- */
a.service-block {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

a.service-block:hover {
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.12);
    transform: translateY(-4px);
}

a.service-block:hover .service-number {
    color: var(--pl-teal);
}

@media (min-width: 992px) {
    .service-block {
        padding: 2rem;
    }
}

/* ---------- Service Detail Pages ---------- */
.hero-service-detail {
    padding: 7rem 0 3rem;
}

.hero-bg.hero-service-detail .case-study-title {
    color: var(--pl-white);
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-bg.hero-service-detail .case-study-subtitle {
    color: var(--pl-slate-200);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.service-back-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pl-teal);
    transition: color 0.2s ease;
}

.service-back-link:hover {
    color: var(--pl-teal-dark);
}

/* Hero deliverables strip (inline tags in service hero) */
.hero-deliverables {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hero-deliverables-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pl-slate-300);
    margin-right: 0.25rem;
}

.hero-deliverables span:not(.hero-deliverables-label) {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pl-slate-200);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Service Proof Card (See It in Action) ---------- */
.service-proof-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    transition: all var(--transition-base);
}

.service-proof-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.service-proof-card .service-proof-body {
    padding: 1.75rem;
}

.service-proof-card .service-proof-meta {
    font-size: 0.8rem;
    color: var(--pl-slate-400);
    margin-bottom: 0.5rem;
}

.service-proof-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-proof-card p {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
}

/* ---------- Service Related Cards ---------- */
.service-related-card {
    border: 1px solid var(--pl-slate-200);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--pl-white);
    transition: all var(--transition-base);
    height: 100%;
}

.service-related-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-related-card h5 {
    color: var(--pl-slate-900);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-related-card p {
    font-size: 0.875rem;
    color: var(--pl-slate-600);
    margin-bottom: 0;
}

.service-related-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pl-teal);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    transition: gap var(--transition-base);
}

.service-related-card:hover .read-more {
    gap: 0.7rem;
}

/* ---------- How We Work Steps ---------- */
.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pl-teal);
    color: var(--pl-white);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.925rem;
    color: var(--pl-slate-500);
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 4.5rem;
        right: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(
            to right,
            var(--pl-teal),
            var(--pl-teal-light)
        );
    }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--pl-white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--pl-slate-200);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card .quote-mark {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--pl-teal-light);
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--pl-slate-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card blockquote strong {
    font-weight: 600;
    color: var(--pl-teal-dark);
}

.testimonial-card .attribution {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pl-slate-900);
    margin-top: auto;
}

.testimonial-card .attribution span {
    display: block;
    font-weight: 400;
    color: var(--pl-slate-500);
}

/* ---------- Case Study Cards ---------- */
.case-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    transition: all var(--transition-base);
    height: 100%;
    color: var(--pl-slate-900);
}

.case-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.case-card .case-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--pl-slate-100);
}

.case-card .case-body {
    padding: 2rem;
}

.case-card .case-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pl-teal);
    margin-bottom: 0.5rem;
}

.case-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--pl-slate-900);
}

.case-card p {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
}

.case-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pl-teal);
    text-decoration: none;
    transition: gap var(--transition-base);
}

.case-card .read-more:hover {
    gap: 0.7rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(
        135deg,
        var(--pl-teal-dark) 0%,
        var(--pl-teal) 100%
    );
    border-radius: 20px;
    padding: 4rem 3rem;
    color: var(--pl-white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 70%
    );
}

.cta-banner h2 {
    color: var(--pl-white);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.cta-banner .btn-white {
    background: var(--pl-white);
    color: var(--pl-teal-dark);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--pl-slate-900);
    color: var(--pl-slate-400);
    padding: 4rem 0 2rem;
}

.site-footer h6 {
    color: var(--pl-white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.site-footer a {
    color: var(--pl-slate-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.site-footer a:hover {
    color: var(--pl-teal-light);
}

.site-footer .footer-brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--pl-white);
}

.footer-brand img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.site-footer .footer-brand span {
    color: var(--pl-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.825rem;
}

/* ---------- Blog Cards ---------- */
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    transition: all var(--transition-base);
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.blog-card .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--pl-slate-100);
}

.blog-card .blog-body {
    padding: 1.75rem;
}

.blog-card .blog-meta {
    font-size: 0.8rem;
    color: var(--pl-slate-400);
    margin-bottom: 0.5rem;
}

.blog-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
}

/* ---------- Who We Serve: Interactive Cards ---------- */
.serve-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-slate-200);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.serve-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pl-teal);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.serve-card:hover {
    border-color: var(--pl-teal);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.08);
    transform: translateY(-3px);
}

.serve-card:hover::before {
    opacity: 1;
}

.serve-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pl-teal-50);
    color: var(--pl-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.serve-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pl-slate-900);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.serve-card p {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.serve-card[role="button"] {
    cursor: pointer;
    user-select: none;
}

.serve-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--pl-teal);
    margin-top: auto;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base);
}

.serve-card:hover .serve-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.serve-card.is-active {
    border-color: var(--pl-teal);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.12);
    background: var(--pl-teal-50);
}

.serve-card.is-active::before {
    opacity: 1;
}

.serve-card.is-active .serve-card-cta {
    opacity: 1;
    transform: translateY(0);
    color: var(--pl-teal-dark);
}

.serve-card.is-active .serve-card-cta i {
    animation: bounceDown 1s ease infinite;
}

/* ---------- Serve Detail Panel ---------- */
.serve-detail-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding: 0 2.5rem;
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    border: none;
    border-radius: 20px;
    position: relative;
    color: var(--pl-white);
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        margin-top 0.4s ease,
        padding 0.4s ease;
}

.serve-detail-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 180%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.serve-detail-panel.is-open {
    max-height: 400px;
    opacity: 1;
    margin-top: 2.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.35);
}

.serve-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.serve-detail-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pl-white);
}

.serve-detail-panel .overline {
    color: rgba(255, 255, 255, 0.7);
}

.serve-detail-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    color: var(--pl-white);
}

.serve-detail-panel p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

.serve-detail-panel .serve-detail-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.serve-detail-panel .serve-detail-deliverables span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pl-teal-light, #5eead4);
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    backdrop-filter: blur(4px);
}

@media (max-width: 991.98px) {
    .serve-detail-panel.is-open {
        max-height: 800px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .serve-detail-panel.is-open {
        max-height: 1200px;
        padding: 1.5rem 1.25rem;
    }
}

/* ---------- Serve Horizontal Layout (left nav + right detail) ---------- */
.serve-horizontal {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.serve-horizontal .serve-nav {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.serve-horizontal .serve-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    height: auto;
    flex-direction: row;
    text-align: left;
    cursor: pointer;
}

.serve-horizontal .serve-card::before {
    display: none;
}

.serve-horizontal .serve-card p,
.serve-horizontal .serve-card .serve-card-cta {
    display: none;
}

.serve-horizontal .serve-detail-close {
    display: none;
}

.serve-horizontal .serve-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.serve-horizontal .serve-card h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.serve-horizontal .serve-card.is-active {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    border-color: transparent;
}

.serve-horizontal .serve-card.is-active h4 {
    color: var(--pl-white);
}

.serve-horizontal .serve-card.is-active .serve-card-icon {
    background: rgba(13, 148, 136, 0.2);
    color: var(--pl-teal-light);
}

.serve-horizontal .serve-detail-panel {
    flex: 1;
    max-height: none;
    margin-top: 0;
    border-radius: 16px;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    transition:
        opacity 0.35s ease,
        padding 0.35s ease;
}

.serve-horizontal .serve-detail-panel.is-open {
    max-height: none;
    opacity: 1;
    padding: 2.5rem;
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .serve-horizontal {
        flex-direction: column;
    }

    .serve-horizontal .serve-nav {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .serve-horizontal .serve-card {
        flex: 1 1 100%;
        padding: 0.75rem 1rem;
        justify-content: flex-start;
    }

    .serve-horizontal .serve-card h4 {
        font-size: 0.875rem;
    }

    .serve-horizontal .serve-detail-panel.is-open {
        padding: 1.5rem 1.25rem;
    }
}

/* ---------- Contact Form ---------- */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--pl-slate-300);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition:
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--pl-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pl-slate-700);
    margin-bottom: 0.4rem;
}

/* ---------- Placeholder Image Boxes ---------- */
.img-placeholder {
    width: 100%;
    background: linear-gradient(
        135deg,
        var(--pl-slate-100) 0%,
        var(--pl-slate-200) 100%
    );
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pl-slate-400);
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem;
    min-height: 300px;
}

.img-placeholder svg {
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

.img-placeholder span {
    max-width: 220px;
    line-height: 1.4;
}

/* ---------- Cost of Skipping Section ---------- */
.skip-stat {
    text-align: center;
    padding: 1.5rem;
}

.skip-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pl-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.skip-stat .stat-label {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
    font-weight: 700;
}

/* ---------- Team Cards (About) ---------- */
.team-card {
    text-align: center;
    padding: 2rem;
}

.team-card .team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    background: var(--pl-slate-100);
    border: 4px solid var(--pl-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-card .team-title {
    font-size: 0.85rem;
    color: var(--pl-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--pl-slate-600);
}

/* ---------- Service Page Content ---------- */
.service-page-content {
    max-width: 1040px;
    margin: 0 auto;
}

.service-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-page-content p {
    margin-bottom: 1.25rem;
}

/* ---------- Blog Post Styles ---------- */
.blog-post-content {
    max-width: 740px;
    margin: 0 auto;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--pl-teal);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--pl-teal-50);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--pl-slate-700);
}

/* ---------- Case Study Styles ---------- */
.hero-case-study {
    padding: 7rem 0 3rem;
}

.case-study-back-link {
    color: var(--pl-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

.case-study-meta {
    font-size: 0.9rem;
    color: var(--pl-slate-400);
}

.case-study-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.case-study-subtitle {
    max-width: 680px;
}

.case-study-hero-img {
    object-fit: cover;
    max-height: 480px;
}

.case-study-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575.98px) {
    .case-study-images {
        grid-template-columns: 1fr;
    }
}

.case-study-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.case-study-images img:hover {
    opacity: 0.85;
}

/* ---------- Lightbox ---------- */
.pl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.pl-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.pl-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.pl-lightbox.active img {
    transform: scale(1);
}

.pl-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    line-height: 1;
    padding: 0.25rem;
}

.pl-lightbox-close:hover {
    opacity: 1;
}

.pl-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 1rem;
    line-height: 1;
}

.pl-lightbox-nav:hover {
    opacity: 1;
}

.pl-lightbox-prev {
    left: 1rem;
}

.pl-lightbox-next {
    right: 1rem;
}

.pl-lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-family: "Inter", sans-serif;
}

.case-study-content h2 {
    margin-bottom: 1rem;
}

.case-study-content p {
    margin-bottom: 1.25rem;
}

.case-study-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.case-study-content ul li {
    margin-bottom: 0.75rem;
}

/* ---------- Utility Classes ---------- */
.text-teal {
    color: var(--pl-teal) !important;
}
.text-orange {
    color: var(--pl-orange) !important;
}

.rounded-xl {
    border-radius: 16px !important;
}
.rounded-2xl {
    border-radius: 20px !important;
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.shadow-medium {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .section {
        padding: var(--section-py-sm) 0;
    }

    .cta-banner {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 7rem 0 2rem;
        text-align: center;
    }

    .hero .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof-strip {
        justify-content: center;
    }

    .hero .btn-group-hero {
        justify-content: center;
    }

    .hero-deliverables {
        justify-content: center;
    }

    .hero-deliverables-label {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    .cta-banner {
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .navbar-brand {
        font-size: 1.15rem;
    }

    .navbar-brand img {
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .hero-proof-strip {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .diff-card {
        padding: 2rem 1.5rem;
    }

    .service-block {
        padding: 2rem 1.5rem;
    }
}
