
        :root {
            --white: #FFFFFF;
            --white-off: #FAFAFA;
            --border: #EBEBEB;
            --border-light: #F3F3F3;

            --ink: #1A1A1A;
            --ink-soft: #6B6B6B;
            --ink-faint: #999999;

            /* ─── 6-color accent palette ─── */
            --green: #6AAF8B;
            --blue: #2E8BC0;
            --rose: #E05580;
            --yellow: #E8A817;
            --orange: #E8672A;
            --purple: #8B3FC8;

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Manrope', sans-serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--ink);
            background-color: var(--white);
            line-height: 1.75;
            font-weight: 300;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NAV ─── */
        #nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        #nav.scrolled,
        body:not(.ppp-is-front) #nav {
            box-shadow: 0 1px 0 var(--border);
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(16px);
        }

        #nav .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding: 1.1rem 2.5rem;
            box-sizing: border-box;
        }

        #nav .nav-logo img {
            height: 56px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        #nav .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        #nav .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            white-space: nowrap;
        }

        #nav .nav-links a {
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--ink-soft);
            text-decoration: none;
            transition: color 0.25s ease;
            letter-spacing: 0.01em;
        }

        #nav .nav-links a:hover {
            color: var(--ink);
        }

        #nav .nav-cta {
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            padding: 0.6rem 1.6rem;
            background: var(--ink);
            color: var(--white) !important;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.03em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        #nav .nav-cta:hover {
            background: var(--purple);
            transform: translateY(-1px);
        }

        #nav .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            margin: 0;
            padding: 0;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: #fff;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        #nav .nav-toggle-bar {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--ink);
            border-radius: 1px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        #nav .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        #nav .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }
        #nav .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Desktop: logo | links | CTA (no hamburger) */
        @media (min-width: 1025px) {
            #nav {
                display: grid;
                grid-template-columns: auto 1fr auto;
                align-items: center;
                column-gap: 1.5rem;
                padding: 0 2.5rem;
            }
            #nav .nav-bar {
                display: contents;
            }
            #nav .nav-logo {
                grid-column: 1;
                grid-row: 1;
                padding: 1.1rem 0;
            }
            #nav .nav-links {
                grid-column: 2;
                grid-row: 1;
                justify-self: start;
            }
            #nav .nav-right {
                grid-column: 3;
                grid-row: 1;
                padding: 1.1rem 0;
            }
            #nav .nav-toggle {
                display: none !important;
            }
        }

        /* Mobile / tablet: hamburger + collapsible panel */
        @media (max-width: 1024px) {
            #nav {
                display: block !important;
                padding: 0 !important;
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 1px 0 var(--border);
            }
            #nav .nav-bar {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
                padding: 0.75rem 1.15rem;
            }
            #nav .nav-logo img {
                height: 44px;
            }
            #nav .nav-toggle {
                display: inline-flex !important;
            }
            #nav .nav-links {
                display: none !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 0 !important;
                margin: 0 !important;
                padding: 0.15rem 1.15rem 0.85rem !important;
                border-top: 1px solid var(--border);
                white-space: normal !important;
                background: #fff;
            }
            #nav .nav-check:checked ~ .nav-links,
            #nav .nav-links.is-open {
                display: flex !important;
            }
            #nav .nav-check {
                position: absolute;
                opacity: 0;
                pointer-events: none;
                width: 0;
                height: 0;
            }
            /* Animate hamburger when open */
            #nav .nav-check:checked ~ .nav-bar .nav-toggle .nav-toggle-bar:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            #nav .nav-check:checked ~ .nav-bar .nav-toggle .nav-toggle-bar:nth-child(2) {
                opacity: 0;
            }
            #nav .nav-check:checked ~ .nav-bar .nav-toggle .nav-toggle-bar:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
            #nav .nav-links a {
                display: block !important;
                padding: 0.95rem 0.25rem !important;
                font-size: 1rem !important;
                color: var(--ink) !important;
                border-bottom: 1px solid var(--border-light);
            }
            #nav .nav-links a:last-child {
                border-bottom: none;
            }
            #nav .nav-cta {
                font-size: 0.78rem;
                padding: 0.5rem 1rem;
            }
        }

        /* ─── HERO ─── */

        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 7rem 2.5rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: center/cover no-repeat; /* hero set via wp_add_inline_style */
            opacity: 0.18;
            pointer-events: none;
        }

        .hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

        .hero-tag {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 1.05rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--green);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.2s forwards;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 1.4rem;
            letter-spacing: -0.03em;
            font-weight: 400;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.35s forwards;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--purple);
        }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--ink-soft);
            max-width: 640px;
            margin-bottom: 2.2rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.5s forwards;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.65s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2.2rem;
            background: var(--ink);
            color: var(--white);
            border: none;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .btn-primary:hover {
            background: var(--purple);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 63, 200, 0.2);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2.2rem;
            background: transparent;
            color: var(--ink);
            border: 1.5px solid var(--border);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 400;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover { border-color: var(--ink); }

        /* ─── SECTIONS ─── */
        section { padding: 4.5rem 2.5rem; }
        .section-inner { max-width: 1000px; margin: 0 auto; }

        .wide-content {
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% + 120px);
        }

        @media (max-width: 1200px) {
            .wide-content {
                width: 100%;
                left: 0;
                transform: none;
            }
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
        }

        .section-heading {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            font-weight: 400;
        }

        .section-divider {
            border: none;
            height: 1px;
            background: var(--border);
            max-width: 1000px;
            margin: 0 auto;
        }

        /* ─── PROBLEM / FLIP CARDS ─── */
        .problem .section-label { color: var(--orange); }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .flip-card {
            perspective: 1000px;
            height: 260px;
            cursor: pointer;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner,
        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
        }

        .flip-card-front {
            background: var(--white);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .flip-card-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
        }

        .flip-card:nth-child(1) .flip-card-front::before { background: var(--orange); }
        .flip-card:nth-child(2) .flip-card-front::before { background: var(--yellow); }
        .flip-card:nth-child(3) .flip-card-front::before { background: var(--rose); }
        .flip-card:nth-child(4) .flip-card-front::before { background: var(--blue); }

        .flip-card-front .problem-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .flip-card-front h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.3;
        }

        .flip-card-front .flip-hint {
            font-size: 0.7rem;
            color: var(--ink-faint);
            margin-top: 1rem;
            letter-spacing: 0.05em;
        }

        .flip-card:nth-child(1) .flip-card-front h3 { color: var(--orange); }
        .flip-card:nth-child(2) .flip-card-front h3 { color: var(--yellow); }
        .flip-card:nth-child(3) .flip-card-front h3 { color: var(--rose); }
        .flip-card:nth-child(4) .flip-card-front h3 { color: var(--blue); }

        .flip-card-back {
            transform: rotateY(180deg);
            color: var(--white);
            overflow: hidden;
        }

        .flip-card:nth-child(1) .flip-card-back { background: var(--orange); }
        .flip-card:nth-child(2) .flip-card-back { background: var(--yellow); }
        .flip-card:nth-child(3) .flip-card-back { background: var(--rose); }
        .flip-card:nth-child(4) .flip-card-back { background: var(--blue); }

        .flip-card-back p {
            font-size: 0.9rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.92);
            padding: 0 0.5rem;
        }

        /* ─── APPROACH / ACCORDION ─── */
        #approach .section-label { color: var(--green); }

        .approach-intro {
            font-size: 1.05rem;
            color: var(--ink-soft);
            max-width: 620px;
            margin-bottom: 2rem;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .accordion-group-label {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .accordion-group-label:first-child {
            margin-top: 0;
        }

        .group-badge {
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.25rem 0.8rem;
            border-radius: 100px;
            color: var(--white);
        }

        .group-badge.complimentary { background: var(--green); }
        .group-badge.partnership { background: var(--purple); }

        .group-label-text {
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--ink-faint);
        }

        .accordion-item {
            border-bottom: 1px solid var(--border);
        }

        .accordion-item:first-child {
            border-top: 1px solid var(--border);
        }

        .accordion-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.6rem 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
            transition: all 0.3s ease;
        }

        .accordion-trigger:hover {
            padding-left: 1rem;
        }

        .accordion-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .accordion-trigger:hover .accordion-number {
            transform: scale(1.08);
        }

        .accordion-number.icon-green { background: rgba(106, 175, 139, 0.15); }
        .accordion-number.icon-blue { background: rgba(46, 139, 192, 0.15); }
        .accordion-number.icon-orange { background: rgba(232, 103, 42, 0.15); }

        .accordion-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            flex-grow: 1;
        }

        .accordion-title.title-green { color: var(--green); }
        .accordion-title.title-blue { color: var(--blue); }
        .accordion-title.title-orange { color: var(--orange); }

        .accordion-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            position: relative;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-icon::before,
        .accordion-icon::after {
            content: '';
            position: absolute;
            background: var(--ink-faint);
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-icon::before {
            width: 16px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .accordion-icon::after {
            width: 2px;
            height: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .accordion-item.active .accordion-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-panel-inner {
            padding: 0 0.5rem 2rem 4.5rem;
        }

        .accordion-panel p {
            font-size: 0.95rem;
            color: var(--ink-soft);
            line-height: 1.75;
            max-width: 600px;
        }

        /* ─── SERVICES / SPOTLIGHT ─── */
        .services .section-label { color: var(--blue); }

        .spotlight-wrap {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 1.5rem;
            min-height: 260px;
        }

        .spotlight-main {
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            padding-left: 2.8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: border-color 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .spotlight-main::before {
            content: '';
            position: absolute;
            top: 1rem;
            bottom: 1rem;
            left: 0;
            width: 5px;
            border-radius: 0 4px 4px 0;
            background: var(--spotlight-color, var(--blue));
            transition: background 0.4s ease;
        }

        .spotlight-content {
            animation: spotlightIn 0.4s ease forwards;
        }

        @keyframes spotlightIn {
            from { opacity: 0; transform: translateY(14px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .spotlight-main h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .spotlight-main p {
            font-size: 1rem;
            color: var(--ink-soft);
            line-height: 1.75;
            max-width: 520px;
        }

        .spotlight-tabs {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .spotlight-tab {
            padding: 0.85rem 1.2rem;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            background: var(--white);
            cursor: pointer;
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--ink-faint);
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .spotlight-tab:hover {
            border-color: var(--ink-soft);
            color: var(--ink-soft);
        }

        .spotlight-tab.active {
            color: var(--white);
            border-color: transparent;
        }

        .spotlight-tab-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .spotlight-tab.active .spotlight-tab-dot {
            transform: scale(1.4);
        }

        .spotlight-tab:nth-child(1) .spotlight-tab-dot { background: var(--blue); }
        .spotlight-tab:nth-child(2) .spotlight-tab-dot { background: var(--orange); }
        .spotlight-tab:nth-child(3) .spotlight-tab-dot { background: var(--rose); }
        .spotlight-tab:nth-child(4) .spotlight-tab-dot { background: var(--green); }
        .spotlight-tab:nth-child(5) .spotlight-tab-dot { background: var(--yellow); }
        .spotlight-tab:nth-child(6) .spotlight-tab-dot { background: var(--purple); }

        .spotlight-tab:nth-child(1).active { background: var(--blue); border-color: var(--blue); }
        .spotlight-tab:nth-child(2).active { background: var(--orange); border-color: var(--orange); }
        .spotlight-tab:nth-child(3).active { background: var(--rose); border-color: var(--rose); }
        .spotlight-tab:nth-child(4).active { background: var(--green); border-color: var(--green); }
        .spotlight-tab:nth-child(5).active { background: var(--yellow); border-color: var(--yellow); }
        .spotlight-tab:nth-child(6).active { background: var(--purple); border-color: var(--purple); }

        @media (max-width: 768px) {
            .spotlight-wrap {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .spotlight-tabs {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.4rem;
            }

            .spotlight-tab {
                padding: 0.6rem 1rem;
                font-size: 0.82rem;
            }
        }

        /* ─── PRICING / TIERS ─── */
        .pricing-model .section-label { color: var(--yellow); }

        .pricing-intro {
            font-size: 1.05rem;
            color: var(--ink-soft);
            max-width: 640px;
            margin-bottom: 1.5rem;
        }

        .pricing-tiers {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            margin-top: 1rem;
        }

        .tier-card {
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.35s ease;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tier-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-color: transparent;
        }

        .tier-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-bottom: 1.3rem;
        }

        .tier-card:nth-child(1) .tier-dot { background: var(--green); }
        .tier-card:nth-child(2) .tier-dot { background: var(--blue); }
        .tier-card:nth-child(3) .tier-dot { background: var(--orange); }
        .tier-card:nth-child(4) .tier-dot { background: var(--purple); }

        .tier-trial {
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--green);
            background: rgba(106, 175, 139, 0.1);
            padding: 0.25rem 0.7rem;
            border-radius: 100px;
            margin-bottom: 0.5rem;
        }

        .tier-card:nth-child(1):hover { border-color: var(--green); }
        .tier-card:nth-child(2):hover { border-color: var(--blue); }
        .tier-card:nth-child(3):hover { border-color: var(--orange); }
        .tier-card:nth-child(4):hover { border-color: var(--purple); }

        .tier-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 0.6rem;
        }

        .tier-card:nth-child(1) h3 { color: var(--green); }
        .tier-card:nth-child(2) h3 { color: var(--blue); }
        .tier-card:nth-child(3) h3 { color: var(--orange); }
        .tier-card:nth-child(4) h3 { color: var(--purple); }

        .tier-card .tier-tagline {
            font-size: 0.78rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--ink-faint);
            margin-bottom: 1.2rem;
        }

        .tier-card p {
            font-size: 0.88rem;
            color: var(--ink-soft);
            line-height: 1.65;
        }

        .pricing-flex-note {
            margin-top: 1.5rem;
            padding: 1.5rem 2rem;
            background: var(--white-off);
            border-radius: 12px;
            border: 1px solid var(--border);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .pricing-flex-note .flex-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .pricing-flex-note p {
            font-size: 0.92rem;
            color: var(--ink-soft);
            line-height: 1.65;
        }

        .pricing-flex-note strong {
            color: var(--ink);
            font-weight: 500;
        }

        .pricing-note {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--ink-faint);
            font-style: italic;
            text-align: center;
        }

        @media (max-width: 768px) {
            .pricing-tiers {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .pricing-tiers {
                grid-template-columns: 1fr;
            }
            .problem-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ─── FOUNDER / PHOTO + TEXT ─── */
        .founder .section-label { color: var(--rose); }

        .founder-photo-wrap {
            margin-top: 2rem;
            margin-bottom: 2rem;
            border-radius: 20px;
            overflow: hidden;
            max-width: 820px;
        }

        .founder-photo-wrap img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .founder-summary {
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: start;
            margin-bottom: 1.5rem;
        }

        .founder-summary-text p {
            font-size: 1rem;
            color: var(--ink-soft);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .founder-summary-text strong {
            color: var(--ink);
            font-weight: 500;
        }

        .founder-summary-quote {
            font-family: var(--font-display);
            font-size: 1.35rem;
            color: var(--rose);
            font-style: italic;
            font-weight: 400;
            border-left: 2px solid var(--rose);
            padding: 0.5rem 0 0.5rem 1.8rem;
            margin: 1.5rem 0 1.5rem 0;
            line-height: 1.45;
            max-width: 600px;
        }

        .credentials-section {
            margin-top: 2rem;
        }

        .credential-badge img {
            max-width: 80px;
            max-height: 80px;
            width:auto;
            height:auto;
            object-fit: contain;
        }

        .credentials-label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--ink-faint);
            margin-bottom: 0.8rem;
        }

        .credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: flex-start;
            align-items: center;
        }

        .credentials-link {
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--blue);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .credentials-link:hover {
            color: var(--purple);
        }

        .credential-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            transition: all 0.3s ease;
            opacity: 0.85;
            flex-shrink: 0;
        }

        .credential-badge:hover {
            opacity: 1;
            transform: scale(1.12);
        }

        .credential-badge img {
            max-width: 85px;
            max-height: 85px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* ─── PROMISE ─── */
        .promise {
            background: var(--ink);
            color: var(--white);
            overflow: hidden;
        }

        .promise .section-label { color: var(--yellow); }
        .promise .section-heading { color: var(--white); }

        .promise-intro {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.55);
            max-width: 560px;
            margin-bottom: 2rem;
        }

        .promise-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }

        .promise-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.8rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .promise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            border-radius: 3px 0 0 3px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

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

        .promise-card:nth-child(1)::before { background: var(--green); }
        .promise-card:nth-child(2)::before { background: var(--blue); }
        .promise-card:nth-child(3)::before { background: var(--yellow); }
        .promise-card:nth-child(4)::before { background: var(--purple); }
        .promise-card:nth-child(5)::before { background: var(--rose); }
        .promise-card:nth-child(6)::before { background: var(--orange); }

        .promise-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .promise-card-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .promise-card:nth-child(1) .promise-card-title { color: var(--green); }
        .promise-card:nth-child(2) .promise-card-title { color: var(--blue); }
        .promise-card:nth-child(3) .promise-card-title { color: var(--yellow); }
        .promise-card:nth-child(4) .promise-card-title { color: var(--purple); }
        .promise-card:nth-child(5) .promise-card-title { color: var(--rose); }
        .promise-card:nth-child(6) .promise-card-title { color: var(--orange); }

        .promise-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.65;
        }

        @media (max-width: 768px) {
            .promise-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* ─── CTA ─── */
        .cta-section {
            text-align: center;
            padding: 5rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 63, 200, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section .section-label { color: var(--purple); }

        .cta-section .section-heading {
            max-width: 520px;
            margin: 0 auto 1rem;
            position: relative;
        }

        .cta-sub {
            font-size: 1.05rem;
            color: var(--ink-soft);
            margin-bottom: 2rem;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .cta-actions .btn-primary { font-weight: 400; }

        /* ─── CONTACT FORM ─── */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 520px;
            margin: 0 auto 2rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.85rem 1.2rem;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 300;
            color: var(--ink);
            background: var(--white);
            transition: border-color 0.3s ease;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--ink-faint);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--green);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button[type="submit"] {
            padding: 0.9rem 2.2rem;
            background: var(--ink);
            color: var(--white);
            border: none;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .contact-form button[type="submit"]:hover {
            background: var(--purple);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 63, 200, 0.2);
        }

        .contact-form-trap {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .turnstile-wrap {
            display: flex;
            justify-content: center;
        }

        .form-status {
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.75rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .form-status.success {
            background: rgba(106, 175, 139, 0.12);
            color: var(--green);
        }

        .form-status.error {
            background: rgba(224, 85, 128, 0.12);
            color: var(--rose);
        }

        .cta-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 1.8rem;
            border: 1.5px solid var(--border);
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.35s ease;
            background: var(--white);
            min-width: 240px;
        }

        .cta-card:hover {
            border-color: transparent;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
            transform: translateY(-3px);
        }

        .cta-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .cta-card:nth-child(1) .cta-card-icon { background: rgba(139, 63, 200, 0.08); }
        .cta-card:nth-child(2) .cta-card-icon { background: rgba(46, 139, 192, 0.08); }
        .cta-card:nth-child(3) .cta-card-icon { background: rgba(106, 175, 139, 0.08); }

        .cta-card:nth-child(1):hover { border-color: var(--purple); }
        .cta-card:nth-child(2):hover { border-color: var(--blue); }
        .cta-card:nth-child(3):hover { border-color: var(--green); }

        .cta-card-text {
            text-align: left;
        }

        .cta-card-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--ink-faint);
            margin-bottom: 0.15rem;
        }

        .cta-card-value {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--ink);
        }

        .cta-note {
            font-size: 0.85rem;
            color: var(--ink-faint);
            font-style: italic;
        }

        /* ─── FOOTER ─── */
        footer {
            text-align: center;
            padding: 2.5rem;
            border-top: 1px solid var(--border);
            font-size: 0.78rem;
            color: var(--ink-faint);
            letter-spacing: 0.02em;
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
            nav { padding: 0.9rem 1.5rem; }
            .nav-logo img { height: 52px; }
            .nav-cta { font-size: 0.78rem; padding: 0.5rem 1.2rem; }
            .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
            section { padding: 3rem 1.5rem; }
            .accordion-panel-inner { padding-left: 0.5rem; }
            .accordion-trigger { gap: 1rem; }
            .accordion-trigger:hover { padding-left: 0.5rem; }
            .accordion-number { width: 38px; height: 38px; font-size: 1.05rem; }
            .hero-cta-group { flex-direction: column; }
            .btn-primary, .btn-secondary { justify-content: center; }
            .problem-grid { grid-template-columns: 1fr 1fr; }
            .founder-summary-quote { padding: 0.3rem 0 0.3rem 1.2rem; font-size: 1.15rem; }
        }
    
/* ─── Shared WP chrome (blog, pages) ─── */
body.ppp-site {
  /* already set by static body rules */
}

/* Nav on inner pages: always solid (no transparent over hero) */
body:not(.ppp-is-front) #nav {
  box-shadow: 0 1px 0 var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

/* Content shell for blog/pages */
.ppp-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 2.5rem 4.5rem;
}

.ppp-shell--wide {
  max-width: 1000px;
}

.ppp-shell h1,
.ppp-shell .ppp-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.ppp-shell .ppp-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.ppp-shell .ppp-content {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.8;
}

.ppp-shell .ppp-content p {
  margin-bottom: 1.25rem;
}

.ppp-shell .ppp-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
}

.ppp-shell .ppp-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.ppp-shell .ppp-content a {
  color: var(--blue);
}

.ppp-shell .ppp-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.ppp-shell .ppp-content ul,
.ppp-shell .ppp-content ol {
  margin: 0 0 1.25rem 1.25rem;
}

/* Blog index cards */
.ppp-post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppp-post-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.ppp-post-card:first-child {
  border-top: 1px solid var(--border);
}

.ppp-post-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.ppp-post-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.ppp-post-card h2 a:hover {
  color: var(--purple);
}

.ppp-post-card .ppp-excerpt {
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
  font-weight: 300;
}

.ppp-post-card .ppp-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

.ppp-post-card .ppp-read-more:hover {
  color: var(--purple);
}

/* Pagination */
.ppp-pagination {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.ppp-pagination a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.ppp-pagination a:hover {
  color: var(--purple);
}

/* Labels on inner pages */
.ppp-kicker {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Nav: active blog link etc */
.nav-links a.current-menu-item,
.nav-links .current-menu-item a {
  color: var(--ink);
  font-weight: 500;
}

/* Admin bar offset */
body.admin-bar #nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #nav { top: 46px; }
}

/* ─── Single post / page alignment ─── */
.ppp-shell,
.ppp-article,
.ppp-article-header,
.ppp-content {
  text-align: left;
  box-sizing: border-box;
}

.ppp-article {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.ppp-article-header {
  width: 100%;
  margin: 0 0 1.75rem;
}

.ppp-page-title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.75rem;
}

.ppp-featured-image {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0;
}

.ppp-featured-image img,
.ppp-featured-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 12px;
}

/* Gutenberg images: same column width as body text */
.ppp-content .wp-block-image,
.ppp-content figure {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  padding: 0;
}

.ppp-content .wp-block-image img,
.ppp-content figure img,
.ppp-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 12px;
}

/* Kill WP global “center” defaults that fight the shell */
.ppp-content > *,
.ppp-article-header > * {
  max-width: 100%;
}

.ppp-content .aligncenter,
.ppp-content .alignwide,
.ppp-content .alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.ppp-article-back {
  margin-top: 3rem;
}


/* ─── Mobile menu (checkbox, no JS required) ─── */
#nav > .nav-check {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

@media (max-width: 1024px) {
  #nav .nav-toggle {
    display: inline-flex !important;
    cursor: pointer !important;
  }
  #nav > .nav-links {
    display: none !important;
  }
  #nav > .nav-check:checked ~ .nav-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background: #fff !important;
    padding: 0.25rem 1.15rem 1rem !important;
    border-top: 1px solid #ebebeb !important;
    box-sizing: border-box !important;
  }
}
