/* =============================================
   PICHEF LANDING PAGE — Seed Pitch
   Extends site.css design tokens
============================================= */

/* PiChef accent — neon green from app design system */
:root {
    --pc-green:      #0BFF13;
    --pc-green-dim:  rgba(11, 255, 19, 0.18);
    --pc-green-glow: rgba(11, 255, 19, 0.12);
    --pc-amber:      #E9A513;
    --pc-amber-dim:  rgba(233, 165, 19, 0.15);
    --pc-dark:       #0a0a0a;
}

/* =============================================
   SHARED PAGE LAYOUT
============================================= */
.pc-section {
    padding: 6rem 0;
    background: var(--black);
}

.pc-section-alt {
    background: #050505;
}

.pc-section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pc-green);
    margin-bottom: 0.6rem;
}

.pc-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.035em;
    margin: 0 0 1rem;
    line-height: 1.08;
}

.pc-section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
    margin: 0;
}

/* =============================================
   HERO
============================================= */
.pc-hero {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 5rem 1rem 4rem;
    text-align: center;
}

.pc-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, rgba(11,255,19,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.pc-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
}

.pc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pc-green-dim);
    border: 1px solid rgba(11, 255, 19, 0.3);
    color: var(--pc-green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pc-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pc-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pc-green);
    animation: pc-pulse 2s ease-in-out infinite;
}

@keyframes pc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.pc-hero-title {
    font-size: clamp(2.75rem, 7.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #fff;
    margin: 0 0 1.5rem;
    max-width: 920px;
    position: relative;
    z-index: 1;
}

.pc-hero-title .pc-accent { color: var(--pc-green); }
.pc-hero-title .pc-accent-amber { color: var(--pc-amber); }

.pc-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 2.75rem;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.pc-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.pc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--pc-green);
    color: #000 !important;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font);
    letter-spacing: 0.01em;
}

.pc-btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 40px var(--pc-green-glow);
    transform: translateY(-2px);
}

/* =============================================
   HERO STATS BAR
============================================= */
.pc-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 780px;
    width: 100%;
}

.pc-stat {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.pc-stat:last-child { border-right: none; }

.pc-stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--pc-green);
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
    margin-bottom: 0.35rem;
}

.pc-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .pc-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .pc-stat:nth-child(2) { border-right: none; }
}

/* =============================================
   PROBLEM
============================================= */
.pc-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .pc-problem-grid { grid-template-columns: 1fr; }
}

.pc-problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    border-left: 3px solid rgba(233, 165, 19, 0.5);
    transition: border-color 0.2s;
}

.pc-problem-card:hover {
    border-left-color: var(--pc-amber);
}

.pc-problem-icon {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
    display: block;
}

.pc-problem-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.pc-problem-text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   SOLUTION
============================================= */
.pc-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .pc-solution-grid { grid-template-columns: 1fr; }
}

.pc-solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all 0.25s ease;
}

.pc-solution-card:hover {
    border-color: rgba(11, 255, 19, 0.25);
    box-shadow: 0 0 40px rgba(11, 255, 19, 0.05);
    transform: translateY(-4px);
}

.pc-solution-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pc-green);
    margin-bottom: 1rem;
    display: block;
}

.pc-solution-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
}

.pc-solution-text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   FLAVOR DNA VISUAL
============================================= */
.pc-dna-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.pc-dna-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pc-dna-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    width: 50px;
    flex-shrink: 0;
}

.pc-dna-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
}

.pc-dna-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(11,255,19,0.4), var(--pc-green));
    transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.pc-dna-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pc-green);
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS — PIPELINE
============================================= */
.pc-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.pc-pipeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 1px;
    background: linear-gradient(90deg, var(--pc-green-dim), var(--pc-green-dim));
    border-top: 1px dashed rgba(11, 255, 19, 0.25);
}

@media (max-width: 767px) {
    .pc-pipeline { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .pc-pipeline::before { display: none; }
}

.pc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.pc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pc-green-dim);
    border: 1px solid rgba(11, 255, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--pc-green);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.pc-step-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}

.pc-step-text {
    font-size: 0.775rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   PATENT / IP GRID
============================================= */
.pc-patent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3rem;
}

@media (max-width: 991px) { .pc-patent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .pc-patent-grid { grid-template-columns: 1fr; } }

.pc-patent-item {
    background: var(--black);
    padding: 1.5rem;
    transition: background 0.2s;
}

.pc-patent-item:hover { background: var(--surface-hover); }

.pc-patent-icon {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    display: block;
}

.pc-patent-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pc-patent-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* =============================================
   APP PREVIEW — PHONE MOCKUPS
============================================= */
.pc-phones-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.pc-phones-wrap::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(11,255,19,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pc-phone {
    width: 210px;
    flex-shrink: 0;
    background: #0d0d0d;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 36px;
    padding: 14px 12px 18px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    transition: transform 0.3s ease;
}

.pc-phone:hover { transform: translateY(-8px); }

.pc-phone.pc-phone-center {
    transform: translateY(-16px);
    border-color: rgba(11, 255, 19, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(11,255,19,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

.pc-phone.pc-phone-center:hover { transform: translateY(-24px); }

.pc-phone-notch {
    width: 70px;
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    margin: 0 auto 12px;
}

.pc-phone-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem;
}

/* Phone screen content */
.pc-screen {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.pc-screen-header {
    background: #111;
    padding: 10px 12px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-screen-greeting {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.pc-screen-logo {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--pc-green);
    letter-spacing: -0.02em;
}

/* Restaurant card in phone */
.pc-mock-card {
    margin: 0 8px;
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 6px;
}

.pc-mock-card-img {
    height: 90px;
    background: linear-gradient(135deg, #1f2a1f, #0d1a0d);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8px;
}

.pc-mock-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65));
}

.pc-mock-card-img-label {
    position: relative;
    z-index: 1;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
}

.pc-mock-match {
    position: absolute;
    top: 6px;
    right: 8px;
    background: var(--pc-green);
    color: #000;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 6px;
}

.pc-mock-card-body {
    padding: 8px;
}

.pc-mock-card-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}

.pc-mock-card-meta {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
}

/* Profile screen */
.pc-mock-profile {
    padding: 10px 8px;
    flex: 1;
}

.pc-mock-archetype {
    background: #111;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(11,255,19,0.15);
}

.pc-mock-archetype-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 3px;
}

.pc-mock-archetype-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--pc-green);
    letter-spacing: -0.02em;
}

.pc-mock-slider-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.pc-mock-slider-label {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.4);
    width: 28px;
    flex-shrink: 0;
}

.pc-mock-slider-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
}

.pc-mock-slider-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(11,255,19,0.35), var(--pc-green));
}

.pc-mock-slider-val {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--pc-green);
    width: 22px;
    text-align: right;
    flex-shrink: 0;
}

/* Dish detail screen */
.pc-mock-hero-img {
    height: 110px;
    background: linear-gradient(135deg, #1a1200, #2a1800);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8px;
}

.pc-mock-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7));
}

.pc-mock-hero-title {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
}

.pc-mock-match-big {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pc-mock-match-pct {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pc-green);
    line-height: 1;
}

.pc-mock-match-text {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.3;
}

/* =============================================
   MARKET OPPORTUNITY
============================================= */
.pc-market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .pc-market-grid { grid-template-columns: 1fr; }
}

.pc-market-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pc-market-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pc-green-dim), transparent);
}

.pc-market-card.pc-market-primary { border-color: rgba(11, 255, 19, 0.2); }

.pc-market-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.pc-market-num {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pc-market-num .pc-accent { color: var(--pc-green); }

.pc-market-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   TRACTION
============================================= */
.pc-traction-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .pc-traction-list { grid-template-columns: 1fr; }
}

.pc-traction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pc-traction-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pc-green);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 8px rgba(11, 255, 19, 0.5);
}

.pc-traction-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   TEAM
============================================= */
.pc-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 700px;
}

@media (max-width: 575px) {
    .pc-team-grid { grid-template-columns: 1fr; }
}

.pc-team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: border-color 0.2s;
}

.pc-team-card:hover {
    border-color: rgba(11, 255, 19, 0.2);
}

.pc-team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pc-green-dim);
    border: 1.5px solid rgba(11, 255, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pc-green);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pc-team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.2rem;
}

.pc-team-role {
    font-size: 0.75rem;
    color: var(--pc-green);
    font-weight: 600;
    margin: 0 0 0.85rem;
    letter-spacing: 0.02em;
}

.pc-team-bio {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   THE ASK — CTA SECTION
============================================= */
.pc-ask {
    background: var(--pc-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pc-ask::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(11,255,19,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.pc-ask-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pc-ask-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pc-green);
    margin-bottom: 1.25rem;
}

.pc-ask-eyebrow::before,
.pc-ask-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--pc-green);
    opacity: 0.5;
}

.pc-ask-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
    line-height: 1.06;
}

.pc-ask-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 2.75rem;
    line-height: 1.8;
}

.pc-ask-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto 3rem;
}

@media (max-width: 575px) {
    .pc-ask-cards { grid-template-columns: 1fr; }
}

.pc-ask-card {
    background: var(--black);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.pc-ask-card-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pc-green);
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 0.25rem;
}

.pc-ask-card-label {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

.pc-ask-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pc-ask-email {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 1.5rem;
}

.pc-ask-email a {
    color: var(--pc-green) !important;
    font-weight: 600;
}

/* =============================================
   NDA DISCLAIMER
============================================= */
.pc-disclaimer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.pc-disclaimer p {
    font-size: 0.725rem;
    color: rgba(255,255,255,0.2);
    margin: 0;
    line-height: 1.7;
    max-width: 640px;
    margin-inline: auto;
}

/* =============================================
   SECTION DIVIDER
============================================= */
.pc-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* =============================================
   UTILITY OVERRIDES
============================================= */
.pc-container-wide {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.pc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .pc-two-col { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 575px) {
    .pc-phones-wrap { gap: 0.75rem; }
    .pc-phone { width: 160px; }
    .pc-phone.pc-phone-center { transform: translateY(-12px); }
    .pc-section { padding: 4rem 0; }
}
