/**
 * Paralegal Toolbox — Frontend Styles
 * Styles for the landing page sections and interior pages.
 */

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.pt-header {
    background-color: var(--pt-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.pt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--pt-max-width);
    margin: 0 auto;
}

.pt-logo svg,
.pt-logo img {
    height: 36px;
    width: auto;
}

.pt-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-nav {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.pt-nav li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--pt-transition);
    text-decoration: none;
}

.pt-nav li a:hover,
.pt-nav li.current-menu-item a {
    color: var(--pt-white);
    background: rgba(255,255,255,0.1);
}

.pt-header__cta {
    margin-left: 16px;
}

.pt-header__cta .pt-btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Hamburger toggle */
.pt-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.pt-header__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pt-white);
    border-radius: 2px;
    transition: all var(--pt-transition);
}

@media (max-width: 992px) {
    .pt-header__toggle {
        display: flex;
    }

    .pt-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--pt-navy);
        padding: 16px 24px 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .pt-header__nav.is-open {
        display: flex;
    }

    .pt-nav {
        flex-direction: column;
    }

    .pt-nav li a {
        padding: 12px 16px;
    }

    .pt-header__cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .pt-header__cta .pt-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.pt-hero {
    padding: 80px 0 60px;
    background: var(--pt-white);
}

.pt-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pt-hero__badge {
    display: inline-block;
    background: rgba(172, 31, 43, 0.08);
    color: var(--pt-burgundy);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pt-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--pt-navy);
    margin-bottom: 20px;
}

.pt-hero__desc {
    font-size: 1.125rem;
    color: var(--pt-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pt-hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pt-hero__stats {
    display: flex;
    gap: 40px;
}

.pt-hero__stat {
    display: flex;
    flex-direction: column;
}

.pt-hero__stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pt-navy);
}

.pt-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--pt-text-light);
    font-weight: 500;
}

/* Hero Card */
.pt-hero__card {
    background: var(--pt-navy);
    color: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 40px;
    position: relative;
}

.pt-hero__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(172,31,43,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pt-hero__card-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--pt-burgundy);
}

.pt-hero__card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--pt-white);
    margin-bottom: 8px;
}

.pt-hero__card-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.pt-hero__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-hero__card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pt-hero__card-list li:first-child {
    border-top: none;
}

@media (max-width: 992px) {
    .pt-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pt-hero__title { font-size: 2.25rem; }
    .pt-hero__actions { justify-content: center; }
    .pt-hero__stats { justify-content: center; }
}

@media (max-width: 768px) {
    .pt-hero { padding: 48px 0 40px; }
    .pt-hero__title { font-size: 2rem; }
    .pt-hero__stats { flex-direction: column; gap: 16px; align-items: center; }
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.pt-service-card {
    text-align: center;
    padding: 40px 28px;
}

.pt-service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(172, 31, 43, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-service-card__icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--pt-burgundy);
}

.pt-service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pt-service-card__desc {
    color: var(--pt-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pt-service-card__link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--pt-burgundy);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   Process / How It Works
   ========================================================================== */
.pt-process__step {
    text-align: center;
    padding: 32px 20px;
}

.pt-process__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pt-burgundy);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.pt-process__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pt-process__desc {
    color: var(--pt-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.pt-testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--pt-radius-lg);
    padding: 32px;
}

.pt-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.pt-testimonial-card__quote p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.pt-testimonial-card__name {
    display: block;
    font-weight: 700;
    color: var(--pt-white);
    font-size: 0.9375rem;
}

.pt-testimonial-card__role {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    margin-top: 2px;
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pt-pricing__grid {
    align-items: start;
}

.pt-pricing-card {
    background: var(--pt-white);
    border: 2px solid var(--pt-silver-light);
    border-radius: var(--pt-radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--pt-transition);
}

.pt-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-shadow-lg);
}

.pt-pricing-card--featured {
    border-color: var(--pt-burgundy);
    box-shadow: 0 8px 40px rgba(172,31,43,0.15);
}

.pt-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pt-burgundy);
    color: var(--pt-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pt-pricing-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--pt-navy);
    margin-bottom: 16px;
    padding-top: 8px;
}

.pt-pricing-card__amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pt-navy);
    display: block;
}

.pt-pricing-card__period {
    font-size: 0.875rem;
    color: var(--pt-text-light);
    display: block;
    margin-bottom: 24px;
}

.pt-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.pt-pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--pt-text);
    border-top: 1px solid var(--pt-silver-light);
}

.pt-pricing-card__features li:first-child {
    border-top: none;
}

.pt-pricing-card__features svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--pt-success);
}

.pt-pricing-card__btn {
    width: 100%;
}

@media (max-width: 768px) {
    .pt-pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.pt-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.pt-faq__item {
    border: 1px solid var(--pt-silver-light);
    border-radius: var(--pt-radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--pt-white);
}

.pt-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--pt-font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pt-navy);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background var(--pt-transition);
}

.pt-faq__question:hover {
    background: var(--pt-silver-light);
}

.pt-faq__question[aria-expanded="true"] {
    background: var(--pt-silver-light);
}

.pt-faq__chevron {
    flex-shrink: 0;
    transition: transform var(--pt-transition);
}

.pt-faq__question[aria-expanded="true"] .pt-faq__chevron {
    transform: rotate(180deg);
}

.pt-faq__answer {
    padding: 0 24px 20px;
}

.pt-faq__answer p {
    color: var(--pt-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.pt-cta-banner {
    padding: 80px 0;
    text-align: center;
}

.pt-cta-banner--burgundy {
    background: linear-gradient(135deg, var(--pt-burgundy) 0%, #8B1922 100%);
    color: var(--pt-white);
}

.pt-cta-banner--dark {
    background: linear-gradient(135deg, var(--pt-navy) 0%, var(--pt-navy-alt) 100%);
    color: var(--pt-white);
}

.pt-cta-banner__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pt-white);
    margin-bottom: 16px;
}

.pt-cta-banner__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.pt-cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.pt-contact__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.pt-contact-form__field {
    margin-bottom: 20px;
}

.pt-contact-form__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pt-navy);
    margin-bottom: 6px;
}

.pt-contact-form__field .required {
    color: var(--pt-burgundy);
}

.pt-contact-form__field input,
.pt-contact-form__field select,
.pt-contact-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--pt-silver-light);
    border-radius: var(--pt-radius);
    font-family: var(--pt-font-primary);
    font-size: 1rem;
    color: var(--pt-text);
    transition: border-color var(--pt-transition);
    background: var(--pt-white);
}

.pt-contact-form__field input:focus,
.pt-contact-form__field select:focus,
.pt-contact-form__field textarea:focus {
    border-color: var(--pt-burgundy);
    outline: none;
}

.pt-contact-form__submit {
    width: 100%;
    margin-top: 8px;
}

.pt-contact-form__message {
    margin-bottom: 16px;
}

.pt-contact-form__message.success {
    background: rgba(40,167,69,0.1);
    color: var(--pt-success);
    padding: 16px;
    border-radius: var(--pt-radius);
    font-weight: 500;
}

.pt-contact-form__message.error {
    background: rgba(220,53,69,0.1);
    color: var(--pt-error);
    padding: 16px;
    border-radius: var(--pt-radius);
    font-weight: 500;
}

/* Contact Sidebar */
.pt-contact__sidebar-card {
    background: var(--pt-navy);
    color: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 36px;
}

.pt-contact__sidebar-card h3 {
    color: var(--pt-white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.pt-contact__sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pt-contact__sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pt-contact__sidebar-list li:first-child {
    border-top: none;
}

.pt-contact__sidebar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
}

.pt-contact__sidebar-info a {
    color: var(--pt-white);
}

.pt-contact__sidebar-info .dashicons {
    color: var(--pt-burgundy);
}

@media (max-width: 992px) {
    .pt-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pt-footer {
    background: var(--pt-navy);
    color: rgba(255,255,255,0.7);
    border-top: 4px solid var(--pt-burgundy);
}

.pt-footer__top {
    padding: 60px 0 40px;
}

.pt-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.pt-footer__tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
}

.pt-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.pt-footer__social a {
    color: rgba(255,255,255,0.5);
    transition: color var(--pt-transition);
}

.pt-footer__social a:hover {
    color: var(--pt-white);
}

.pt-footer__heading {
    color: var(--pt-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.pt-footer__links li {
    margin-bottom: 10px;
}

.pt-footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--pt-transition);
}

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

.pt-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-footer__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.pt-footer__contact a {
    color: rgba(255,255,255,0.6);
}

.pt-footer__contact a:hover {
    color: var(--pt-white);
}

.pt-footer__contact .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--pt-burgundy);
}

.pt-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.pt-footer__disclaimer {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    line-height: 1.6;
}

.pt-footer__legal-links {
    margin-bottom: 8px;
}

.pt-footer__tos-link {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--pt-transition);
}

.pt-footer__tos-link:hover {
    color: var(--pt-white);
}

.pt-footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .pt-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Blog / Interior Pages
   ========================================================================== */
.pt-blog__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}

.pt-post-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    box-shadow: var(--pt-shadow);
    transition: transform var(--pt-transition), box-shadow var(--pt-transition);
}

.pt-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-shadow-lg);
}

.pt-post-card__thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pt-post-card__content {
    padding: 24px;
}

.pt-post-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--pt-text-light);
    margin-bottom: 12px;
}

.pt-post-card__title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.pt-post-card__title a {
    color: var(--pt-navy);
}

.pt-post-card__title a:hover {
    color: var(--pt-burgundy);
}

.pt-post-card__excerpt {
    color: var(--pt-text-light);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.pt-post-card__link {
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Single Post */
.pt-single__header {
    margin-bottom: 32px;
}

.pt-single__title {
    font-size: 2.25rem;
}

.pt-single__meta {
    display: flex;
    gap: 16px;
    color: var(--pt-text-light);
    font-size: 0.875rem;
}

.pt-single__thumbnail {
    margin-bottom: 32px;
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
}

.pt-single__body {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.pt-single__body h2 { margin-top: 40px; }
.pt-single__body h3 { margin-top: 32px; }

.pt-single__footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--pt-silver-light);
    font-size: 0.875rem;
    color: var(--pt-text-light);
}

.pt-single__footer a {
    color: var(--pt-burgundy);
}

/* Breadcrumbs */
.pt-breadcrumbs {
    margin-bottom: 32px;
}

.pt-breadcrumbs__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--pt-text-light);
}

.pt-breadcrumbs__item + .pt-breadcrumbs__item::before {
    content: '/';
    margin-right: 8px;
    color: var(--pt-silver);
}

.pt-breadcrumbs__item a {
    color: var(--pt-text-light);
}

.pt-breadcrumbs__item a:hover {
    color: var(--pt-burgundy);
}

/* 404 */
.pt-404__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.pt-404__code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--pt-silver-light);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.pt-404__title {
    margin-bottom: 16px;
}

.pt-404__desc {
    color: var(--pt-text-light);
    margin-bottom: 32px;
}

.pt-404__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

/* Pagination */
.pt-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pt-pagination a,
.pt-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--pt-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pt-pagination a {
    color: var(--pt-text);
    border: 1px solid var(--pt-silver-light);
}

.pt-pagination a:hover {
    border-color: var(--pt-burgundy);
    color: var(--pt-burgundy);
}

.pt-pagination span.current {
    background: var(--pt-burgundy);
    color: var(--pt-white);
    border: 1px solid var(--pt-burgundy);
}

/* Sidebar */
.pt-sidebar {
    padding-top: 8px;
}

.pt-widget {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--pt-silver-light);
    border-radius: var(--pt-radius-lg);
}

.pt-widget__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .pt-blog__layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Comments
   ========================================================================== */
.pt-comments {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--pt-silver-light);
}

.pt-comments__title {
    font-size: 1.375rem;
    margin-bottom: 24px;
}

.pt-comments__list {
    list-style: none;
    padding: 0;
}

.pt-comment-form textarea,
.pt-comment-form input[type="text"],
.pt-comment-form input[type="email"],
.pt-comment-form input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--pt-silver-light);
    border-radius: var(--pt-radius);
    font-family: var(--pt-font-primary);
    font-size: 1rem;
}

.pt-comment-form .form-submit input {
    background: var(--pt-burgundy);
    color: var(--pt-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--pt-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Post Navigation */
.pt-post-nav {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--pt-silver-light);
}

.pt-post-nav__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--pt-text-light);
    margin-bottom: 4px;
}

.pt-post-nav__title {
    font-weight: 600;
}

/* ==========================================================================
   About Us Page
   ========================================================================== */

/* About Hero */
.pt-about-hero {
    padding: 60px 0 40px;
    background: var(--pt-white);
}

.pt-about-hero__inner {
    max-width: 780px;
}

.pt-about-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pt-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.pt-about-hero__lead {
    font-size: 1.125rem;
    color: var(--pt-text-light);
    line-height: 1.8;
}

/* Split Layout */
.pt-about-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.pt-about-split__content h2 {
    margin-bottom: 20px;
}

.pt-about-split__content p {
    color: var(--pt-text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Values Card */
.pt-about-values-card {
    background: var(--pt-navy);
    color: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 36px;
}

.pt-about-values-card h3 {
    color: var(--pt-white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.pt-about-values-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-about-values-card li {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pt-about-values-card li:first-child {
    border-top: none;
    padding-top: 0;
}

.pt-about-values-card li strong {
    display: block;
    color: var(--pt-white);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.pt-about-values-card li span {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Stats */
.pt-about-stats__grid {
    text-align: center;
}

.pt-about-stat {
    padding: 20px;
}

.pt-about-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pt-white);
    margin-bottom: 4px;
}

.pt-about-stat__label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
}

/* Differentiator Cards */
.pt-about-diff {
    text-align: left;
    padding: 36px;
}

.pt-about-diff__icon {
    width: 56px;
    height: 56px;
    background: rgba(172,31,43,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pt-about-diff__icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--pt-burgundy);
}

.pt-about-diff h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.pt-about-diff p {
    color: var(--pt-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Audiences */
.pt-about-audiences {
    margin-top: 32px;
}

.pt-about-audience {
    padding: 20px 0;
    border-top: 1px solid var(--pt-silver-light);
}

.pt-about-audience:first-child {
    border-top: none;
}

.pt-about-audience h4 {
    font-size: 1rem;
    color: var(--pt-navy);
    margin-bottom: 6px;
}

.pt-about-audience p {
    font-size: 0.9375rem;
    margin: 0;
}

/* CTA Sidebar Card */
.pt-about-cta-card {
    background: var(--pt-white);
    border: 2px solid var(--pt-burgundy);
    border-radius: var(--pt-radius-lg);
    padding: 36px;
    text-align: center;
}

.pt-section--gray .pt-about-cta-card {
    box-shadow: var(--pt-shadow-lg);
}

.pt-about-cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.pt-about-cta-card > p {
    color: var(--pt-text-light);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.pt-about-cta-card .pt-btn {
    width: 100%;
}

.pt-about-cta-card__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--pt-text-light);
    margin-top: 12px;
    text-align: left;
}

.pt-about-cta-card__trust:first-of-type {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--pt-silver-light);
}

/* Publication Section */
.pt-about-publication__content {
    max-width: 800px;
    margin: 0 auto;
}

.pt-about-publication__content p {
    font-size: 1.0625rem;
    color: var(--pt-text-light);
    line-height: 1.8;
}

/* CRM Features Card */
.pt-about-crm-features {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    padding: 36px;
    box-shadow: var(--pt-shadow-lg);
}

.pt-about-crm-features h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.pt-about-crm-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pt-about-crm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--pt-text);
    border-top: 1px solid var(--pt-silver-light);
}

.pt-about-crm-features li:first-child {
    border-top: none;
}

.pt-about-crm-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--pt-burgundy);
    border-radius: 50%;
    flex-shrink: 0;
}

.pt-about-crm-features__note {
    font-size: 0.8125rem;
    color: var(--pt-burgundy);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--pt-silver-light);
}

/* About page responsive */
@media (max-width: 992px) {
    .pt-about-split {
        grid-template-columns: 1fr;
    }

    .pt-about-hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pt-about-hero__title {
        font-size: 1.75rem;
    }

    .pt-about-stat__number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   reCAPTCHA v3
   ========================================================================== */

/* Hide the floating reCAPTCHA badge — we show attribution text in footer instead
   (compliant with Google reCAPTCHA v3 Terms of Service) */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    overflow: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

.pt-footer__recaptcha {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 8px;
}

.pt-footer__recaptcha a {
    color: rgba(255,255,255,0.4);
    text-decoration: underline;
}

.pt-footer__recaptcha a:hover {
    color: rgba(255,255,255,0.6);
}
