:root {
    --pc-ink: #14213d;
    --pc-ink-2: #23304f;
    --pc-gold: #d6b45f;
    --pc-paper: #fffdf7;
    --pc-sand: #f4efe5;
    --pc-line: #ded6c6;
    --pc-muted: #667085;
    --pc-white: #ffffff;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pc-paper);
    color: var(--pc-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 {
    border: 0;
    outline: 0;
}

.pc-site {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(244, 239, 229, .74), rgba(255, 253, 247, 0) 360px),
        var(--pc-paper);
}

.pc-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.pc-topbar {
    background: var(--pc-ink);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pc-topbar-inner {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.pc-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(20, 33, 61, .1);
    background: rgba(255, 253, 247, .92);
    backdrop-filter: blur(18px);
}

.pc-nav-bar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.pc-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.pc-brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--pc-ink);
    color: var(--pc-gold);
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(20, 33, 61, .18);
}

.pc-brand-name,
.pc-footer-brand {
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.pc-brand-kicker {
    display: block;
    margin-top: 5px;
    color: var(--pc-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-desktop-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #3f4a60;
    font-size: 14px;
    font-weight: 800;
}

.pc-desktop-links a:hover,
.pc-text-link:hover,
.pc-footer a:hover {
    color: var(--pc-gold);
}

.pc-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
}

.pc-menu-line,
.pc-menu-line::before,
.pc-menu-line::after {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--pc-ink);
    content: "";
}

.pc-menu-line::before { transform: translateY(-6px); }
.pc-menu-line::after { transform: translateY(4px); }

.pc-mobile-menu {
    border-top: 1px solid var(--pc-line);
    background: var(--pc-paper);
}

.pc-mobile-menu[data-state="closed"] { display: none; }

.pc-mobile-links {
    display: grid;
    gap: 4px;
    padding-block: 14px 18px;
}

.pc-mobile-links a {
    border-radius: 8px;
    padding: 13px 14px;
    font-weight: 850;
}

.pc-mobile-links a:hover,
.pc-mobile-cta {
    background: var(--pc-sand);
}

.pc-button {
    min-height: 44px;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 900;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pc-button:hover { transform: translateY(-1px); }
.pc-button-primary { background: var(--pc-ink); color: var(--pc-white); box-shadow: 0 16px 34px rgba(20, 33, 61, .18); }
.pc-button-outline { border: 1px solid rgba(20, 33, 61, .22); background: rgba(255, 255, 255, .7); color: var(--pc-ink); }
.pc-button-light { background: var(--pc-paper); color: var(--pc-ink); }
.pc-full { width: 100%; }
.pc-link-button { display: inline-flex; }

.pc-badge {
    width: fit-content;
    border-radius: 8px;
    background: rgba(214, 180, 95, .18);
    color: #7b5f16;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pc-badge-dark {
    background: rgba(255, 255, 255, .1);
    color: var(--pc-gold);
    border: 1px solid rgba(255, 255, 255, .14);
}

.pc-badge-soft {
    background: #f0e7d4;
    color: var(--pc-ink);
}

.pc-section {
    padding: 92px 0;
}

.pc-hero {
    position: relative;
    padding: 92px 0 82px;
    background:
        radial-gradient(circle at 78% 20%, rgba(214, 180, 95, .22), transparent 28%),
        linear-gradient(135deg, var(--pc-ink) 0%, #1b2b4f 48%, var(--pc-paper) 48.2%);
    color: var(--pc-white);
}

.pc-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, .16);
    content: "";
}

.pc-hero-grid,
.pc-two-column,
.pc-page-grid,
.pc-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 54px;
    align-items: center;
}

.pc-hero-copy h1,
.pc-page-hero h1 {
    margin: 18px 0 18px;
    max-width: 780px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .94;
    letter-spacing: 0;
}

.pc-hero-copy .pc-lede {
    color: rgba(255, 255, 255, .78);
}

.pc-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.pc-section-heading h2,
.pc-two-column h2,
.pc-contact-panel h2,
.pc-cta h2 {
    margin: 14px 0 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.pc-lede {
    margin: 0;
    max-width: 660px;
    color: #465166;
    font-size: 19px;
    line-height: 1.75;
}

.pc-muted {
    color: var(--pc-muted);
    line-height: 1.7;
}

.pc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pc-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.pc-hero-proof span {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    padding: 10px 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
}

.pc-hero-panel,
.pc-form-card,
.pc-service-card,
.pc-attorney-card,
.pc-quote-card,
.pc-insight-card,
.pc-result-card {
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
    box-shadow: 0 24px 70px rgba(20, 33, 61, .11);
}

.pc-hero-panel {
    position: relative;
    padding: 16px;
    color: var(--pc-ink);
    animation: pc-panel-rise .7s ease both;
}

@keyframes pc-panel-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.pc-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    padding: 8px 8px 16px;
}

.pc-panel-top span {
    display: block;
    color: var(--pc-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-panel-top strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
}

.pc-hero-panel img,
.pc-practice-card img,
.pc-expertise-row img,
.pc-wide-visual {
    border-radius: 8px;
    border: 1px solid var(--pc-line);
    background: var(--pc-sand);
}

.pc-hero-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-sand);
    aspect-ratio: 16 / 10;
}

.pc-hero-photo::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 33, 61, 0) 42%, rgba(20, 33, 61, .74)),
        linear-gradient(90deg, rgba(20, 33, 61, .18), rgba(20, 33, 61, 0));
    content: "";
}

.pc-hero-photo img {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    transform: scale(1.02);
}

.pc-photo-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 253, 247, .9);
    padding: 14px;
    box-shadow: 0 18px 36px rgba(20, 33, 61, .26);
    backdrop-filter: blur(12px);
}

.pc-photo-overlay span {
    grid-column: 1 / -1;
    color: #7b5f16;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pc-photo-overlay strong {
    font-size: 18px;
}

.pc-photo-overlay em {
    color: var(--pc-muted);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.pc-matter-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.pc-matter-list div {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 10px;
    align-items: center;
    border: 1px solid #eee4d2;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
}

.pc-matter-list span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pc-gold);
}

.pc-matter-list em {
    color: var(--pc-muted);
    font-style: normal;
    font-weight: 800;
}

.pc-floating-note {
    position: absolute;
    right: -18px;
    bottom: 84px;
    width: 132px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    background: var(--pc-ink);
    color: var(--pc-white);
    padding: 14px;
    box-shadow: 0 22px 45px rgba(20, 33, 61, .24);
}

.pc-floating-note strong {
    display: block;
    color: var(--pc-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
}

.pc-floating-note span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.pc-proof-band {
    border-block: 1px solid var(--pc-line);
    background: var(--pc-paper);
    padding: 28px 0;
}

.pc-proof-band p {
    margin: 0 auto 18px;
    max-width: 780px;
    color: var(--pc-muted);
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.pc-logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.pc-logo-row span {
    display: grid;
    min-height: 54px;
    place-items: center;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: #fbf7ee;
    color: #536075;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
}

.pc-quiet {
    background: #f6f0e6;
}

.pc-ink {
    background: var(--pc-ink);
    color: var(--pc-white);
}

.pc-ink .pc-muted {
    color: rgba(255, 255, 255, .72);
}

.pc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-line);
}

.pc-stats div {
    background: var(--pc-paper);
    padding: 26px;
}

.pc-stats strong,
.pc-result-tile strong,
.pc-result-card strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.pc-stats span,
.pc-result-tile span,
.pc-result-card span,
.pc-contact-list span {
    display: block;
    margin-bottom: 8px;
    color: var(--pc-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-text-link {
    font-weight: 900;
    color: var(--pc-ink);
}

.pc-text-link-light {
    color: var(--pc-paper);
}

.pc-practice-grid,
.pc-feature-grid,
.pc-usecase-grid,
.pc-pricing-grid,
.pc-service-grid,
.pc-attorney-grid,
.pc-insight-grid,
.pc-result-grid,
.pc-results-board,
.pc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pc-feature-grid,
.pc-usecase-grid,
.pc-pricing-grid,
.pc-testimonial-strip {
    grid-template-columns: repeat(3, 1fr);
}

.pc-feature-card,
.pc-usecase-card,
.pc-light-quote,
.pc-pricing-card {
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pc-feature-card:hover,
.pc-usecase-card:hover,
.pc-light-quote:hover,
.pc-pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 180, 95, .74);
    box-shadow: 0 22px 55px rgba(20, 33, 61, .12);
}

.pc-feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--pc-ink);
    color: var(--pc-gold);
    font-size: 13px;
    font-weight: 950;
}

.pc-practice-card {
    overflow: hidden;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
}

.pc-practice-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-width: 0 0 1px;
}

.pc-card-pad {
    padding: 22px;
}

.pc-card-title {
    margin-top: 12px;
    color: var(--pc-ink);
    font-size: 21px;
    line-height: 1.16;
}

.pc-plan-stack {
    display: grid;
    gap: 14px;
}

.pc-plan-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.pc-plan-card.featured {
    background: var(--pc-paper);
    color: var(--pc-ink);
}

.pc-plan-card h3 {
    margin: 14px 0 6px;
    font-size: 24px;
}

.pc-plan-card p {
    margin: 0;
    max-width: 430px;
    color: inherit;
    opacity: .76;
    line-height: 1.55;
}

.pc-plan-card strong,
.pc-service-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
}

.pc-showcase {
    background: linear-gradient(135deg, var(--pc-ink), #233456);
    color: var(--pc-white);
}

.pc-showcase .pc-muted {
    color: rgba(255, 255, 255, .72);
}

.pc-showcase-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pc-showcase-tabs span {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 900;
}

.pc-showcase-tabs .active {
    background: var(--pc-paper);
    color: var(--pc-ink);
}

.pc-dashboard-card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    padding: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.pc-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 16px;
}

.pc-dashboard-top span {
    color: var(--pc-gold);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-dashboard-top strong {
    color: var(--pc-white);
    font-size: 20px;
}

.pc-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 14px;
    margin-top: 16px;
}

.pc-dashboard-main,
.pc-dashboard-side div,
.pc-dashboard-rows div {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.pc-dashboard-main {
    padding: 18px;
}

.pc-dashboard-main > span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 900;
}

.pc-chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 180px;
    margin-top: 18px;
}

.pc-chart-bars i {
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--pc-gold), rgba(214, 180, 95, .25));
}

.pc-chart-bars i:nth-child(1) { height: 42%; }
.pc-chart-bars i:nth-child(2) { height: 72%; }
.pc-chart-bars i:nth-child(3) { height: 54%; }
.pc-chart-bars i:nth-child(4) { height: 88%; }

.pc-dashboard-side {
    display: grid;
    gap: 14px;
}

.pc-dashboard-side div {
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
}

.pc-dashboard-side strong {
    color: var(--pc-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1;
}

.pc-dashboard-side span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-dashboard-rows {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.pc-dashboard-rows div {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.pc-dashboard-rows div span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pc-gold);
}

.pc-dashboard-rows em {
    color: rgba(255, 255, 255, .62);
    font-style: normal;
    font-weight: 900;
}

.pc-result-grid,
.pc-results-board {
    grid-template-columns: repeat(4, 1fr);
}

.pc-result-tile {
    border-left: 2px solid var(--pc-gold);
    padding: 6px 18px 4px;
}

.pc-result-tile p,
.pc-result-card p,
.pc-usecase-card p {
    color: var(--pc-muted);
    line-height: 1.65;
}

.pc-testimonial-strip {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.pc-light-quote p {
    margin: 0;
    color: #3e4a60;
    line-height: 1.75;
}

.pc-quote-person-light em {
    color: var(--pc-muted);
}

.pc-pricing-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    color: var(--pc-white);
    box-shadow: none;
    overflow: hidden;
}

.pc-pricing-card.featured {
    background: var(--pc-paper);
    color: var(--pc-ink);
    transform: translateY(-10px);
}

.pc-pricing-card [class*="m-card-title"],
.pc-pricing-card h3 {
    color: inherit;
    border: 0;
    margin: 16px 0 10px;
    line-height: 1.15;
}

.pc-pricing-card [class*="m-card-description"] {
    color: inherit;
    opacity: .7;
}

.pc-pricing-card strong {
    display: block;
    margin-top: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
}

.pc-pricing-card-header {
    padding: 30px 30px 0;
}

.pc-pricing-card-content {
    padding: 20px 30px 30px;
}

.pc-pricing-grid {
    padding-bottom: 18px;
}

.pc-check-list-dark li {
    color: inherit;
    opacity: .82;
}

.pc-cta {
    background: linear-gradient(135deg, var(--pc-ink), var(--pc-ink-2));
    color: var(--pc-white);
    padding: 112px 0 116px;
    overflow: hidden;
}

.pc-cta h2 {
    max-width: 980px;
    margin-inline: auto;
    font-size: clamp(40px, 5.4vw, 78px);
    line-height: .98;
}

.pc-cta p {
    max-width: 980px;
    margin: 22px auto 0;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.45;
}

.pc-cta .pc-link-button {
    margin-top: 18px;
}

.pc-centered {
    text-align: center;
}

.pc-centered .pc-badge,
.pc-centered .pc-link-button {
    margin-inline: auto;
}

.pc-narrow {
    max-width: 820px;
}

.pc-page-hero {
    background: var(--pc-sand);
    border-bottom: 1px solid var(--pc-line);
}

.pc-page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
}

.pc-expertise-list {
    display: grid;
    gap: 18px;
}

.pc-expertise-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
}

.pc-expertise-row img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-width: 0 1px 0 0;
}

.pc-check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.pc-check-list li {
    position: relative;
    padding-left: 24px;
    color: #4b5565;
    line-height: 1.45;
}

.pc-check-list li::before {
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pc-gold);
    content: "";
}

.pc-service-grid,
.pc-attorney-grid,
.pc-insight-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pc-service-card.featured {
    outline: 2px solid var(--pc-gold);
}

.pc-attorney-card {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(244, 239, 229, .8), rgba(255, 255, 255, 1));
}

.pc-attorney-mark {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    border-bottom: 1px solid var(--pc-line);
    background:
        linear-gradient(135deg, rgba(20, 33, 61, .96), rgba(35, 48, 79, .9)),
        repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 255, 255, .08) 36px 37px);
}

.pc-attorney-mark span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(214, 180, 95, .7);
    border-radius: 8px;
    background: rgba(255, 253, 247, .08);
    color: var(--pc-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 900;
}

.pc-service-card {
    overflow: hidden;
}

.pc-service-card-header {
    padding: 28px 28px 0;
}

.pc-service-card-content {
    padding: 20px 28px 28px;
}

.pc-avatar {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: var(--pc-ink);
    color: var(--pc-gold);
    font-weight: 900;
}

.pc-avatar-small {
    width: 46px;
    height: 46px;
}

.pc-role {
    margin: 10px 0 14px;
    color: #7b5f16;
    font-weight: 900;
}

.pc-testimonial-grid {
    grid-template-columns: .9fr repeat(3, 1fr);
    align-items: stretch;
}

.pc-quote-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.pc-quote-card p {
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
}

.pc-quote-person {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.pc-quote-person em {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-style: normal;
    font-size: 13px;
}

.pc-wide-visual {
    width: 100%;
}

.pc-timeline {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.pc-timeline div {
    border-bottom: 1px solid var(--pc-line);
    padding-bottom: 16px;
}

.pc-timeline span {
    color: #8a6c1b;
    font-weight: 900;
}

.pc-timeline strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
}

.pc-timeline p {
    margin: 6px 0 0;
    color: var(--pc-muted);
}

.pc-insight-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.pc-insight-meta span {
    color: var(--pc-muted);
    font-size: 13px;
    font-weight: 850;
}

.pc-accordion {
    display: grid;
    gap: 12px;
}

.pc-accordion-item {
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-white);
}

.pc-accordion-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
    background: transparent;
    padding: 18px;
    color: var(--pc-ink);
    text-align: left;
    font-weight: 900;
}

.pc-accordion-content {
    padding: 0 18px 18px;
    color: var(--pc-muted);
    line-height: 1.7;
}

.pc-accordion-content[data-state="closed"] {
    display: none;
}

.pc-contact-grid {
    align-items: start;
}

.pc-form-card-header {
    padding: 30px 30px 0;
}

.pc-form-card-content {
    padding: 18px 30px 0;
}

.pc-form-card-footer {
    padding: 14px 30px 30px;
}

.pc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pc-field-wide {
    grid-column: 1 / -1;
}

.pc-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
}

.pc-field {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cfc6b5;
    border-radius: 8px;
    background: var(--pc-paper);
    padding: 0 13px;
    color: var(--pc-ink);
    font: inherit;
}

.pc-textarea {
    min-height: 128px;
    padding-top: 12px;
    resize: vertical;
}

.pc-contact-panel {
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: var(--pc-sand);
    padding: 30px;
}

.pc-contact-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.pc-contact-list strong {
    font-size: 18px;
}

.pc-separator {
    height: 1px;
    width: 100%;
    margin: 26px 0;
    background: var(--pc-line);
}

.pc-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0f172a;
    color: rgba(255, 255, 255, .72);
    padding: 56px 0;
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
}

.pc-footer-brand {
    color: var(--pc-white);
    margin: 0 0 12px;
}

.pc-footer-copy {
    max-width: 430px;
    line-height: 1.7;
}

.pc-footer-heading {
    margin: 0 0 14px;
    color: var(--pc-white);
    font-weight: 900;
}

.pc-footer a,
.pc-footer span {
    display: block;
    margin-top: 10px;
}

@media (max-width: 980px) {
    .pc-desktop-links,
    .pc-desktop-action {
        display: none;
    }

    .pc-menu-button {
        display: grid;
        place-items: center;
    }

    .pc-hero-grid,
    .pc-two-column,
    .pc-page-grid,
    .pc-contact-grid {
        grid-template-columns: 1fr;
    }

    .pc-practice-grid,
    .pc-feature-grid,
    .pc-usecase-grid,
    .pc-pricing-grid,
    .pc-testimonial-strip,
    .pc-service-grid,
    .pc-attorney-grid,
    .pc-insight-grid,
    .pc-result-grid,
    .pc-results-board,
    .pc-testimonial-grid,
    .pc-stats,
    .pc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-section-heading {
        align-items: start;
        flex-direction: column;
    }

    .pc-logo-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .pc-container {
        width: min(100% - 24px, 1180px);
    }

    .pc-topbar-inner {
        align-items: start;
        flex-direction: column;
        padding-block: 10px;
    }

    .pc-section,
    .pc-hero {
        padding: 64px 0;
    }

    .pc-hero-copy h1,
    .pc-page-hero h1 {
        font-size: 44px;
    }

    .pc-section-heading h2,
    .pc-two-column h2,
    .pc-contact-panel h2,
    .pc-cta h2 {
        font-size: 36px;
    }

    .pc-practice-grid,
    .pc-feature-grid,
    .pc-usecase-grid,
    .pc-pricing-grid,
    .pc-testimonial-strip,
    .pc-service-grid,
    .pc-attorney-grid,
    .pc-insight-grid,
    .pc-result-grid,
    .pc-results-board,
    .pc-testimonial-grid,
    .pc-stats,
    .pc-footer-grid,
    .pc-form-grid {
        grid-template-columns: 1fr;
    }

    .pc-logo-row,
    .pc-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .pc-floating-note {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .pc-expertise-row {
        grid-template-columns: 1fr;
    }

    .pc-expertise-row img {
        min-height: 180px;
        border-width: 0 0 1px;
    }

    .pc-plan-card {
        align-items: start;
        flex-direction: column;
    }

    .pc-pricing-card.featured {
        transform: none;
    }

    .pc-form-card-header {
        padding: 22px 18px 0;
    }

    .pc-form-card-content {
        padding: 16px 18px 0;
    }

    .pc-form-card-footer {
        padding: 12px 18px 18px;
    }
}
