/* ============================================
   DESIGN MAIN PC – Light Theme (pcp- prefix)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.hidden {
    display: none !important;
}

/* ============================================
   HEADER
   ============================================ */
.pcp-header {
    background-color: #ffffff;
    padding: 16px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e8e8ec;
}

.pcp-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcp-logo-fx img {
    display: block;
}

/* --- Mobile menu toggle (hidden on desktop) --- */
.pcp-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.pcp-menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a2e;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Navigation --- */
.pcp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcp-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.pcp-nav-item {
    position: relative;
}

.pcp-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.pcp-nav-link:hover,
.pcp-nav-link:focus-visible {
    background-color: #f0f0f4;
    color: #0060df;
}

.pcp-nav-arrow {
    font-size: 0.7em;
    transition: transform 0.2s ease;
}

.pcp-nav-item:hover .pcp-nav-arrow,
.pcp-nav-link[aria-expanded="true"] .pcp-nav-arrow {
    transform: rotate(180deg);
}

/* --- Dropdown --- */
.pcp-nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background-color: #ffffff;
    border: 1px solid #e8e8ec;
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

.pcp-nav-item:hover .pcp-nav-dropdown,
.pcp-nav-link[aria-expanded="true"] + .pcp-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pcp-nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1a1a2e;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.pcp-nav-dropdown-link:hover {
    background-color: #f0f0f4;
    color: #0060df;
}

/* --- CTA Button --- */
.pcp-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background-color: #0060df;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    margin-left: 8px;
}

.pcp-nav-cta:hover {
    background-color: #004ebc;
    box-shadow: 0 4px 12px rgba(0, 96, 223, 0.3);
    color: #ffffff;
}

/* (notification bar removed) */

/* ============================================
   BUTTONS
   ============================================ */
.pcp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
    color: #1a1a2e;
    background-color: rgba(0, 0, 0, 0.06);
}

.pcp-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Tertiary button (used inside banners = white on dark gradient) */
.pcp-button.button-tertiary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 10px 20px;
}

.pcp-button.button-tertiary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Outline button (footer) */
.pcp-button.button-outline {
    background-color: transparent;
    border: 2px solid #c8c8d0;
    color: #1a1a2e;
}

.pcp-button.button-outline:hover {
    border-color: #1a1a2e;
    background-color: rgba(0, 0, 0, 0.04);
}

.pcp-icon.pcp-icon-right {
    font-style: normal;
    font-size: 0.9em;
}

.pcp-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   HERO BANNER – Rounded card with gradient
   ============================================ */
.pcp-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 48px;
}

.pcp-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.pcp-banner-purple {
    background: linear-gradient(135deg, #20123a 0%, #312a65 40%, #5b4a9e 70%, #7b68c8 100%);
}

.pcp-banner-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 80px 48px 72px;
    position: relative;
    z-index: 2;
}

.pcp-banner-content-inner {
    max-width: 640px;
}

/* Grain / noise texture overlay on banners */
.pcp-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Decorative symbol on the right side of hero */
.pcp-banner-symbol {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.pcp-banner-symbol svg {
    width: 100%;
    height: 100%;
}

.pcp-heading-group {
    margin-bottom: 24px;
}

.pcp-superheading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.pcp-heading.pcp-heading-size-2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a1a2e;
    margin-bottom: 16px;
}

/* Inside banners, headings stay white */
.pcp-banner .pcp-heading.pcp-heading-size-2 {
    color: #ffffff;
}

.pcp-heading.pcp-heading-size-3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.pcp-heading.pcp-heading-size-4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.pcp-subheading {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5b5b6e;
    margin-bottom: 8px;
}

/* Inside banners, subheadings stay light */
.pcp-banner .pcp-subheading {
    color: rgba(255, 255, 255, 0.75);
}

/* Hero banner buttons */
.pcp-banner .pcp-buttons {
    margin-top: 32px;
    justify-content: flex-start;
}

/* Hero tags (inside banner) */
.pcp-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pcp-tag.pcp-tag-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s;
}

.pcp-tag.pcp-tag-hero:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.pcp-tag.pcp-tag-hero .pcp-tag-icon {
    font-size: 0.85rem;
}

/* ============================================
   BANNER WITH IMAGE (Backup section)
   ============================================ */
.pcp-banner-with-image {
    background: linear-gradient(135deg, #20123a 0%, #5b4a9e 50%, #7b68c8 100%);
}

.pcp-banner-layout {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
}

.pcp-banner-media img {
    border-radius: 12px;
    max-width: 100%;
}

.pcp-banner-content.pcp-banner-content-left {
    padding: 0;
    text-align: left;
    display: block;
}

.pcp-banner-content-left .pcp-banner-content-inner {
    max-width: 100%;
}

.pcp-banner-content-left .pcp-buttons {
    margin-top: 24px;
    justify-content: flex-start;
}

/* ============================================
   INTRO SECTION (Extensions)
   ============================================ */
.pcp-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}

.pcp-intro.pcp-intro-has-media.pcp-intro-media-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pcp-intro-content .pcp-heading-group {
    margin-bottom: 24px;
}

.pcp-intro-content .pcp-heading.pcp-heading-size-2 {
    font-size: 2.25rem;
}

.pcp-intro-content .pcp-subheading {
    font-size: 1.05rem;
    color: #5b5b6e;
}

.pcp-intro-actions {
    margin-top: 24px;
}

/* Inside intro, tertiary buttons should be dark */
.pcp-intro .pcp-button.button-tertiary {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

.pcp-intro .pcp-button.button-tertiary:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: #1a1a2e;
}

.pcp-intro-media img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION
   ============================================ */
.pcp-section {
    padding: 80px 0;
}

.pcp-section-gray {
    background-color: #f5f5f7;
}

.pcp-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.pcp-section-container > .pcp-heading.text-center {
    margin-bottom: 48px;
}

.pcp-section-container > .pcp-heading-group.text-center {
    margin-bottom: 48px;
}

.pcp-section-cta-wrap {
    margin-top: 40px;
    text-align: center;
}

.pcp-section-cta-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5b5b6e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.pcp-section-cta-link:hover {
    color: #1a1a2e;
}

/* ============================================
   MEDIA CONTENT (Mobile section)
   ============================================ */
.pcp-mediacontent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 16px;
}

.pcp-mediacontent-media img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pcp-mediacontent-content .pcp-heading {
    margin-bottom: 16px;
}

.pcp-mediacontent-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pcp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pcp-tag-icon {
    font-size: 0.85rem;
}

.pcp-tag-dark {
    background-color: #eeeef0;
    color: #1a1a2e;
}

.pcp-tag-blue {
    background-color: #e0efff;
    color: #0060df;
}

/* Inside media content, tertiary buttons should be dark */
.pcp-mediacontent .pcp-button.button-tertiary {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

.pcp-mediacontent .pcp-button.button-tertiary:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.pcp-mediacontent-content .pcp-body {
    margin-bottom: 24px;
}

.pcp-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5b5b6e;
    margin-bottom: 12px;
}

.pcp-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CARD GRID (Improvements)
   ============================================ */
.pcp-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.pcp-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8ec;
}

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

.pcp-card-media {
    overflow: hidden;
}

.pcp-card-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pcp-card:hover .pcp-card-media img {
    transform: scale(1.03);
}

.pcp-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pcp-card-content .pcp-heading {
    margin-bottom: 12px;
}

.pcp-card-content .pcp-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.pcp-card-content .pcp-body p {
    font-size: 0.95rem;
}

.pcp-card-content .pcp-buttons {
    margin-top: auto;
}

.pcp-card-content .pcp-button {
    padding: 8px 0;
    background: none;
    border: none;
    color: #0060df;
    font-size: 0.95rem;
}

.pcp-card-content .pcp-button:hover {
    color: #0250bb;
    background: none;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.pcp-section-subscribe {
    border-top: 1px solid #e8e8ec;
}

.pcp-section-subscribe .pcp-heading-group {
    margin-bottom: 32px;
}

.pcp-newsletterform {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.pcp-newsletterform-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid #c8c8d0;
    background-color: #ffffff;
    color: #1a1a2e;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.pcp-newsletterform-input::placeholder {
    color: #9696a0;
}

.pcp-newsletterform-input:focus {
    border-color: #0060df;
    box-shadow: 0 0 0 3px rgba(0, 96, 223, 0.15);
}

.pcp-newsletterform-details {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.pcp-newsletterform-details.pcp-newsletterform-row-visible {
    display: flex;
}

.pcp-newsletterform-field {
    position: relative;
}

.pcp-select-wrapper {
    position: relative;
}

.pcp-newsletterform-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #c8c8d0;
    background-color: #ffffff;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
}

.pcp-newsletterform-select:focus {
    border-color: #0060df;
    box-shadow: 0 0 0 3px rgba(0, 96, 223, 0.15);
}

.pcp-select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9696a0;
    pointer-events: none;
    font-size: 0.85rem;
}

.pcp-newsletterform-consent {
    margin-top: 4px;
}

.pcp-newsletterform-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.pcp-newsletterform-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: #0060df;
}

.pcp-newsletterform-checkbox-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #5b5b6e;
}

.pcp-newsletterform-checkbox-text a {
    color: #0060df;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pcp-newsletterform-checkbox-text a:hover {
    color: #0250bb;
}

.pcp-newsletterform #newsletter-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    background-color: #0060df;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.pcp-newsletterform #newsletter-submit:hover {
    background-color: #0250bb;
}

.pcp-newsletterform-error-list {
    list-style: none;
    padding: 12px 16px;
    background: #fef0f0;
    border: 1px solid #fcc;
    border-radius: 8px;
    margin-top: 12px;
    text-align: left;
}

.pcp-newsletterform-error-list li {
    font-size: 0.9rem;
    color: #d32f2f;
}

.pcp-newsletterform-success {
    text-align: center;
    padding: 40px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.pcp-footer {
    background-color: #f5f5f7;
    border-top: 1px solid #e8e8ec;
    padding: 48px 0 40px;
}

.pcp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.pcp-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.pcp-footer-links ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.pcp-footer-link {
    font-size: 0.875rem;
    color: #5b5b6e;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.pcp-footer-link:hover {
    color: #1a1a2e;
}

.pcp-footer-link svg {
    flex-shrink: 0;
}

.pcp-footer-logo a {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    transition: color 0.2s;
}

.pcp-footer-logo a:hover {
    color: #0060df;
}

.pcp-footer-divider {
    border: none;
    border-top: 1px solid #e8e8ec;
    margin-bottom: 32px;
}

.pcp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pcp-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.pcp-footer-subtitle {
    font-size: 0.875rem;
    color: #5b5b6e;
}

.pcp-footer-cta {
    text-align: right;
}

.pcp-footer-cta .pcp-button {
    font-size: 0.875rem;
    padding: 10px 18px;
    gap: 6px;
}

.pcp-footer-cta .pcp-button svg {
    flex-shrink: 0;
}

.pcp-footer-note {
    font-size: 0.8rem;
    color: #9696a0;
    margin-top: 8px;
}
