/* ===================================
   LAYOUT & CONTAINER
   =================================== */
.pc-container { max-width: var(--pc-container); margin: 0 auto; padding: 0 20px; }
.pc-section { max-width: var(--pc-container); margin: 36px auto; padding: 0 20px; }
.pc-section__title { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.pc-section__subtitle { color: var(--pc-text-muted); margin-bottom: 22px; font-size: 15px; }

/* ===================================
   GRIDS
   =================================== */
.pc-grid { display: grid; gap: 16px; }
.pc-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pc-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc-grid--2 { grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===================================
   NAVBAR
   =================================== */
.pc-nav {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 14px 28px; display: flex; justify-content: space-between;
    align-items: center; box-shadow: var(--pc-shadow-lg); margin: 16px auto;
    max-width: var(--pc-container); position: sticky; top: 16px; z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.pc-nav.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); }
.pc-nav__logo {
    font-size: 24px; font-weight: 900; color: var(--pc-primary);
    display: flex; align-items: center; gap: 4px; text-decoration: none;
}
.pc-nav__logo img { height: 36px; width: auto; }
.pc-nav__links {
    display: flex; gap: 18px; align-items: center; flex-wrap: wrap; list-style: none;
}
.pc-nav__links a {
    text-decoration: none; color: var(--pc-text-light); font-weight: 600;
    font-size: 13px; transition: color 0.2s; padding: 4px 0; position: relative;
}
.pc-nav__links a:hover, .pc-nav__links a.is-active { color: var(--pc-primary); }
.pc-nav__links a.is-active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--pc-primary); border-radius: 2px;
}
.pc-nav__toggle {
    display: none; background: none; border: none; font-size: 24px;
    cursor: pointer; padding: 4px; color: var(--pc-text);
}

/* ===================================
   BUTTONS
   =================================== */
.pc-btn {
    padding: 9px 18px; border-radius: var(--pc-radius-full); font-weight: 700;
    text-decoration: none; font-size: 13px; display: inline-flex; align-items: center;
    gap: 6px; border: none; cursor: pointer; font-family: var(--pc-font);
    transition: all 0.2s ease; line-height: 1.4;
}
.pc-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.pc-btn--primary { background: var(--pc-primary); color: var(--pc-white); }
.pc-btn--primary:hover { background: var(--pc-primary-dark); color: var(--pc-white); }
.pc-btn--accent { background: var(--pc-accent); color: var(--pc-white); }
.pc-btn--accent:hover { background: var(--pc-accent-dark); color: var(--pc-white); }
.pc-btn--outline { background: transparent; color: var(--pc-primary); border: 2px solid var(--pc-primary); }
.pc-btn--outline:hover { background: var(--pc-primary); color: var(--pc-white); }
.pc-btn--white { background: var(--pc-white); color: var(--pc-accent); }
.pc-btn--lg { padding: 13px 28px; font-size: 15px; font-weight: 800; }
.pc-btn--sm { padding: 6px 14px; font-size: 12px; }
.pc-btn--block { display: block; width: 100%; text-align: center; }

/* ===================================
   HERO
   =================================== */
.pc-hero {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    border-radius: var(--pc-radius-xl); padding: 50px 44px; margin: 16px auto;
    max-width: var(--pc-container); display: flex; gap: 36px; align-items: center;
    color: var(--pc-white); position: relative; overflow: hidden;
}
.pc-hero::after {
    content: '\1F43E'; position: absolute; right: 30px; bottom: 10px;
    font-size: 180px; opacity: 0.06; pointer-events: none;
}
.pc-hero--adopt { background: linear-gradient(135deg, var(--pc-purple), var(--pc-purple-dark)); }
.pc-hero--sitter { background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-dark)); }
.pc-hero--city { background: linear-gradient(135deg, var(--pc-primary), #0f4c63); padding: 40px 44px; }
.pc-hero__text { flex: 1.3; }
.pc-hero__title { font-size: 38px; font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.pc-hero__title .pc-highlight { color: var(--pc-accent); }
.pc-hero--sitter .pc-hero__title .pc-highlight { color: var(--pc-white); }
.pc-hero__desc { font-size: 16px; opacity: 0.9; margin-bottom: 24px; line-height: 1.6; }
.pc-hero__image { flex: 0.6; text-align: center; }
.pc-hero__image img { max-width: 100%; border-radius: var(--pc-radius-lg); }
.pc-hero__image--emoji { font-size: 100px; }

/* ===================================
   SEARCH BAR
   =================================== */
.pc-search-bar {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 7px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.pc-search-bar input, .pc-search-bar select {
    border: none; padding: 12px 14px; font-size: 14px; font-family: var(--pc-font);
    border-radius: 10px; outline: none; color: var(--pc-text);
}
.pc-search-bar input { flex: 1; min-width: 160px; }
.pc-search-bar select {
    border: 2px solid var(--pc-border); cursor: pointer; background: var(--pc-white);
    padding-right: 30px;
}
.pc-search-bar button {
    background: var(--pc-accent); color: var(--pc-white); border: none;
    padding: 12px 24px; border-radius: 10px; font-weight: 800; font-size: 15px;
    cursor: pointer; font-family: var(--pc-font); transition: background 0.2s; white-space: nowrap;
}
.pc-search-bar button:hover { background: var(--pc-accent-dark); }

/* ===================================
   STATS ROW
   =================================== */
.pc-stats { display: flex; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.pc-stats__item { text-align: center; }
.pc-stats__number { font-size: 24px; font-weight: 900; color: var(--pc-accent); }
.pc-stats__label { font-size: 11px; opacity: 0.8; }

/* ===================================
   CARDS - Generic
   =================================== */
.pc-card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 22px 16px; text-align: center; box-shadow: var(--pc-shadow-md);
    transition: transform 0.2s ease;
}
.pc-card:hover { transform: translateY(-3px); }
.pc-card__icon { font-size: 36px; margin-bottom: 10px; }
.pc-card__title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.pc-card__text { font-size: 11px; color: var(--pc-text-muted); line-height: 1.4; }
.pc-card__price { font-size: 13px; font-weight: 800; color: var(--pc-primary); margin-top: 6px; }

/* ===================================
   SITTER CARD
   =================================== */
.pc-sitter-card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    overflow: hidden; box-shadow: var(--pc-shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pc-sitter-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.pc-sitter-card__photo {
    height: 120px; background: linear-gradient(135deg, #e8f4f8, #d4eaf0);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.pc-sitter-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.pc-sitter-card__photo--placeholder { font-size: 50px; }
.pc-badge-verified {
    position: absolute; top: 8px; right: 8px; background: var(--pc-success);
    color: var(--pc-white); padding: 2px 7px; border-radius: var(--pc-radius-full);
    font-size: 10px; font-weight: 700;
}
.pc-sitter-card__info { padding: 14px; }
.pc-sitter-card__name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.pc-sitter-card__name a { color: var(--pc-text); text-decoration: none; }
.pc-sitter-card__name a:hover { color: var(--pc-primary); }
.pc-sitter-card__location { font-size: 11px; color: var(--pc-text-muted); margin-bottom: 4px; }
.pc-sitter-card__rating { color: var(--pc-accent); font-size: 13px; font-weight: 700; }

/* Tags */
.pc-tags { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 6px; }
.pc-tag {
    background: #EBF8FF; color: var(--pc-primary); padding: 2px 7px;
    border-radius: var(--pc-radius-full); font-size: 9px; font-weight: 600;
}

/* Price Row */
.pc-price-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--pc-border);
}
.pc-price { font-size: 16px; font-weight: 800; color: var(--pc-primary); }
.pc-price small { font-size: 10px; font-weight: 400; color: var(--pc-text-muted); }
.pc-book-btn {
    background: var(--pc-accent); color: var(--pc-white); border: none;
    padding: 7px 14px; border-radius: var(--pc-radius-full); font-weight: 700;
    font-size: 11px; cursor: pointer; font-family: var(--pc-font); transition: background 0.2s;
}
.pc-book-btn:hover { background: var(--pc-accent-dark); }

/* ===================================
   CITY CARD
   =================================== */
.pc-city-card {
    background: var(--pc-white); border-radius: var(--pc-radius-md);
    padding: 16px; text-align: center; box-shadow: var(--pc-shadow-sm);
    border: 1px solid var(--pc-border); transition: transform 0.2s, border-color 0.2s;
    display: block; text-decoration: none; color: var(--pc-text);
}
.pc-city-card:hover { transform: translateY(-2px); border-color: var(--pc-primary); }
.pc-city-card__emoji { font-size: 28px; margin-bottom: 6px; }
.pc-city-card__name { font-size: 14px; font-weight: 700; }
.pc-city-card__desc { font-size: 11px; color: var(--pc-text-muted); }
.pc-city-card__count { font-size: 16px; font-weight: 900; color: var(--pc-primary); margin-top: 4px; }

/* ===================================
   ADOPTION CARD
   =================================== */
.pc-adopt-card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); transition: transform 0.2s;
}
.pc-adopt-card:hover { transform: translateY(-3px); }
.pc-adopt-card__photo {
    height: 140px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pc-adopt-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.pc-adopt-card__photo--dog { background: linear-gradient(135deg, #fef3c7, #fed7aa); }
.pc-adopt-card__photo--cat { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pc-adopt-card__photo--placeholder { font-size: 60px; }
.pc-adopt-card__info { padding: 14px; }
.pc-adopt-card__name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pc-adopt-card__meta { font-size: 11px; color: var(--pc-text-muted); margin-bottom: 8px; line-height: 1.5; }
.pc-adopt-btn {
    display: block; background: var(--pc-primary); color: var(--pc-white);
    text-align: center; padding: 8px; border-radius: var(--pc-radius-sm);
    font-weight: 700; font-size: 12px; text-decoration: none; transition: background 0.2s;
}
.pc-adopt-btn:hover { background: var(--pc-primary-dark); color: var(--pc-white); }

/* ===================================
   BLOG CARD
   =================================== */
.pc-blog-card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: transform 0.2s;
}
.pc-blog-card:hover { transform: translateY(-3px); }
.pc-blog-card__image {
    height: 120px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.pc-blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.pc-blog-card__body { padding: 14px; }
.pc-blog-card__category { font-size: 10px; font-weight: 700; color: var(--pc-primary); text-transform: uppercase; }
.pc-blog-card__title { font-size: 14px; font-weight: 700; margin: 4px 0; line-height: 1.3; }
.pc-blog-card__title a { color: var(--pc-text); text-decoration: none; }
.pc-blog-card__title a:hover { color: var(--pc-primary); }
.pc-blog-card__excerpt { font-size: 11px; color: var(--pc-text-muted); line-height: 1.4; margin-bottom: 6px; }
.pc-blog-card__meta { font-size: 10px; color: var(--pc-text-faint); }

/* ===================================
   HOW IT WORKS (Steps)
   =================================== */
.pc-white-box {
    background: var(--pc-white); border-radius: var(--pc-radius-xl);
    padding: 36px; box-shadow: var(--pc-shadow-md); margin: 36px auto; max-width: var(--pc-container);
}
.pc-steps { display: flex; gap: 16px; justify-content: center; align-items: flex-start; }
.pc-step { flex: 1; text-align: center; position: relative; padding: 0 8px; }
.pc-step__number {
    width: 44px; height: 44px; border-radius: 50%; background: var(--pc-primary);
    color: var(--pc-white); font-size: 20px; font-weight: 900; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 12px;
}
.pc-step__number--accent { background: var(--pc-accent); }
.pc-step__number--purple { background: var(--pc-purple); }
.pc-step__icon { font-size: 32px; margin-bottom: 8px; }
.pc-step__title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.pc-step__text { font-size: 11px; color: var(--pc-text-muted); line-height: 1.4; }
.pc-step__arrow { position: absolute; right: -18px; top: 22px; font-size: 20px; color: #cbd5e0; }

/* ===================================
   TRUST SECTION
   =================================== */
.pc-trust {
    background: var(--pc-bg-light); border-radius: var(--pc-radius-xl);
    padding: 36px; margin: 36px auto; max-width: var(--pc-container);
}
.pc-trust__title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.pc-trust__subtitle { text-align: center; color: var(--pc-text-muted); margin-bottom: 22px; font-size: 15px; }

/* ===================================
   CTA BANNER
   =================================== */
.pc-cta-banner {
    max-width: var(--pc-container); margin: 36px auto;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-dark));
    border-radius: var(--pc-radius-xl); padding: 44px; display: flex;
    align-items: center; gap: 36px; color: var(--pc-white);
}
.pc-cta-banner__text { flex: 1; }
.pc-cta-banner__title { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.pc-cta-banner__desc { font-size: 15px; opacity: 0.9; margin-bottom: 18px; line-height: 1.5; }
.pc-cta-banner__benefits { display: flex; gap: 20px; margin-bottom: 20px; }
.pc-cta-banner__benefit { font-size: 12px; }
.pc-cta-banner__benefit strong { display: block; font-size: 18px; }
.pc-cta-banner__image { flex: 0.4; text-align: center; }

/* ===================================
   PROFILE PAGE (Sitter)
   =================================== */
.pc-profile {
    max-width: var(--pc-container); margin: 16px auto;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; padding: 0 20px;
}
.pc-profile__left {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 26px; box-shadow: var(--pc-shadow-md);
}
.pc-profile__avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, #e8f4f8, #d4eaf0); display: flex;
    align-items: center; justify-content: center; margin: 0 auto 12px; overflow: hidden;
}
.pc-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pc-profile__name { text-align: center; font-size: 20px; font-weight: 800; }
.pc-profile__location { text-align: center; color: var(--pc-text-muted); font-size: 13px; margin-bottom: 10px; }
.pc-profile__rating { text-align: center; font-size: 16px; color: var(--pc-accent); font-weight: 700; margin-bottom: 14px; }
.pc-profile__stats { display: flex; justify-content: space-around; margin-bottom: 16px; }
.pc-profile__stat { text-align: center; }
.pc-profile__stat-number { font-size: 18px; font-weight: 800; color: var(--pc-primary); }
.pc-profile__stat-label { font-size: 10px; color: var(--pc-text-muted); }
.pc-profile__verified {
    background: #d1fae5; border-radius: var(--pc-radius-sm); padding: 8px;
    text-align: center; font-size: 12px; font-weight: 700; color: #22543d; margin-bottom: 14px;
}
.pc-profile__services { list-style: none; margin-top: 14px; }
.pc-profile__service-item {
    display: flex; justify-content: space-between; padding: 8px 0;
    border-bottom: 1px solid #f0f0f0; font-size: 13px;
}
.pc-profile__service-price { font-weight: 700; color: var(--pc-primary); }
.pc-profile__right { display: flex; flex-direction: column; gap: 16px; }
.pc-profile__card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 20px; box-shadow: var(--pc-shadow-md);
}
.pc-profile__card-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.pc-profile__card-text { font-size: 13px; color: var(--pc-text-light); line-height: 1.7; }
.pc-book-cta {
    display: block; width: 100%; background: var(--pc-primary); color: var(--pc-white);
    text-align: center; padding: 14px; border-radius: 10px; font-size: 16px;
    font-weight: 800; text-decoration: none; margin-top: 10px; transition: background 0.2s;
    border: none; cursor: pointer; font-family: var(--pc-font);
}
.pc-book-cta:hover { background: var(--pc-primary-dark); color: var(--pc-white); }

/* ===================================
   CALENDAR
   =================================== */
.pc-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: 10px; }
.pc-calendar__day { text-align: center; padding: 6px 3px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.pc-calendar__day--header { font-weight: 700; color: var(--pc-text-muted); background: transparent; }
.pc-calendar__day--available { background: #d1fae5; color: #22543d; cursor: pointer; }
.pc-calendar__day--available:hover { background: #a7f3d0; }
.pc-calendar__day--unavailable { background: #fecaca; color: #991b1b; }

/* ===================================
   REVIEWS
   =================================== */
.pc-review { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.pc-review:last-child { border-bottom: none; }
.pc-review__header { display: flex; justify-content: space-between; margin-bottom: 3px; }
.pc-review__author { font-weight: 700; font-size: 12px; }
.pc-review__date { font-size: 10px; color: var(--pc-text-faint); }
.pc-review__stars { color: var(--pc-accent); font-size: 12px; }
.pc-review__text { font-size: 12px; color: var(--pc-text-light); line-height: 1.5; }

/* ===================================
   BOOKING FLOW
   =================================== */
.pc-booking { max-width: 800px; margin: 16px auto; padding: 0 20px; }
.pc-booking__steps { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; align-items: center; }
.pc-booking__step { display: flex; align-items: center; gap: 5px; font-size: 12px; }
.pc-booking__circle {
    width: 28px; height: 28px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-weight: 700; font-size: 12px;
}
.pc-booking__circle--active { background: var(--pc-primary); color: var(--pc-white); }
.pc-booking__circle--done { background: var(--pc-success); color: var(--pc-white); }
.pc-booking__circle--pending { background: var(--pc-border); color: var(--pc-text-faint); }
.pc-booking__line { width: 36px; height: 2px; background: var(--pc-border); }
.pc-booking__form {
    background: var(--pc-white); border-radius: var(--pc-radius-lg);
    padding: 26px; box-shadow: var(--pc-shadow-md);
}
.pc-booking__title { font-size: 20px; margin-bottom: 16px; }

/* Form Groups */
.pc-fg { margin-bottom: 14px; }
.pc-fg label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 4px; color: var(--pc-text-light); }
.pc-fg input, .pc-fg select, .pc-fg textarea {
    width: 100%; padding: 10px 12px; border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-sm); font-family: var(--pc-font);
    font-size: 13px; color: var(--pc-text); transition: border-color 0.2s;
}
.pc-fg input:focus, .pc-fg select:focus, .pc-fg textarea:focus {
    border-color: var(--pc-primary); outline: none;
}
.pc-fg--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Booking Summary */
.pc-booking__summary { background: var(--pc-bg-light); border-radius: 10px; padding: 16px; margin-top: 16px; }
.pc-booking__summary-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.pc-booking__summary-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.pc-booking__summary-total {
    font-weight: 800; font-size: 15px; border-top: 2px solid var(--pc-border);
    padding-top: 8px; margin-top: 4px;
}

/* ===================================
   CALCULATOR
   =================================== */
.pc-calc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-calc__form {
    background: var(--pc-white); border-radius: 16px; padding: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.pc-calc__form label {
    display: block; font-size: 13px; font-weight: 700;
    margin-bottom: 5px; margin-top: 14px; color: var(--pc-text-light);
}
.pc-calc__form select, .pc-calc__form input[type="range"] {
    width: 100%; padding: 10px 12px; border: 2px solid var(--pc-border);
    border-radius: 8px; font-family: var(--pc-font); font-size: 14px;
}
.pc-calc__form input[type="range"] { padding: 6px 0; border: none; accent-color: var(--pc-primary); }
.pc-calc__result {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0); border-radius: 16px;
    padding: 28px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}
.pc-calc__big-number { font-size: 48px; font-weight: 900; color: #065f46; }
.pc-calc__label { font-size: 14px; color: #064e3b; margin-top: 6px; }

/* Compare Table */
.pc-compare-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 13px; }
.pc-compare-table th {
    background: var(--pc-primary); color: var(--pc-white);
    padding: 10px 14px; text-align: left; font-weight: 700;
}
.pc-compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--pc-border); }
.pc-compare-table .pc-highlight-cell { background: #d1fae5; font-weight: 700; }
.pc-compare-table tr:hover td { background: var(--pc-bg-light); }

/* ===================================
   FAQ
   =================================== */
.pc-faq__category {
    font-size: 16px; font-weight: 800; color: var(--pc-primary);
    margin: 20px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--pc-primary);
}
.pc-faq-item {
    border: 1px solid var(--pc-border); border-radius: var(--pc-radius-md);
    margin-bottom: 10px; overflow: hidden;
}
.pc-faq-item__question {
    padding: 14px 18px; font-weight: 700; font-size: 14px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--pc-white); border: none; width: 100%;
    font-family: var(--pc-font); color: var(--pc-text); text-align: left;
    transition: background 0.2s;
}
.pc-faq-item__question:hover { background: var(--pc-bg-light); }
.pc-faq-item__question-icon { transition: transform 0.3s; font-size: 12px; }
.pc-faq-item.is-open .pc-faq-item__question-icon { transform: rotate(180deg); }
.pc-faq-item__answer {
    padding: 0 18px; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 13px; color: var(--pc-text-light); line-height: 1.7;
}
.pc-faq-item.is-open .pc-faq-item__answer { padding: 0 18px 14px; max-height: 500px; }

/* ===================================
   BLOG PAGE & SIDEBAR
   =================================== */
.pc-blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.pc-blog-main { display: flex; flex-direction: column; gap: 16px; }
.pc-blog-sidebar { display: flex; flex-direction: column; gap: 16px; }
.pc-sidebar-box {
    background: var(--pc-white); border-radius: var(--pc-radius-md);
    padding: 18px; box-shadow: var(--pc-shadow-sm);
}
.pc-sidebar-box__title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.pc-sidebar-box a { display: block; font-size: 12px; color: var(--pc-primary); text-decoration: none; padding: 4px 0; }
.pc-sidebar-box a:hover { text-decoration: underline; }

/* ===================================
   ARTICLE (Single Blog Post)
   =================================== */
.pc-breadcrumb { font-size: 11px; color: var(--pc-text-faint); margin-bottom: 12px; }
.pc-breadcrumb a { color: var(--pc-primary); text-decoration: none; }
.pc-breadcrumb a:hover { text-decoration: underline; }
.pc-article-header { margin-bottom: 24px; }
.pc-article-header__title { font-size: 30px; font-weight: 900; line-height: 1.3; margin-bottom: 10px; }
.pc-author-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--pc-text-muted); }
.pc-author-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: #dbeafe;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pc-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pc-article-body h2 { font-size: 20px; font-weight: 800; margin: 20px 0 8px; color: var(--pc-primary); }
.pc-article-body h3 { font-size: 16px; font-weight: 700; margin: 14px 0 6px; }
.pc-article-body p { font-size: 14px; line-height: 1.8; margin-bottom: 12px; color: var(--pc-text-light); }
.pc-article-body ul, .pc-article-body ol {
    margin: 8px 0 12px 20px; font-size: 14px; line-height: 1.8; color: var(--pc-text-light);
}
.pc-callout {
    background: #eef2ff; border-left: 4px solid #6366f1; padding: 14px 18px;
    border-radius: 0 10px 10px 0; margin: 14px 0; font-size: 13px; color: #312e81; line-height: 1.6;
}

/* Table of Contents */
.pc-toc { position: sticky; top: 80px; }
.pc-toc__title { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.pc-toc a {
    display: block; font-size: 12px; color: var(--pc-primary); text-decoration: none;
    padding: 3px 0; border-left: 2px solid var(--pc-border); padding-left: 10px;
    margin-bottom: 2px; transition: border-color 0.2s;
}
.pc-toc a:hover, .pc-toc a.is-active { border-color: var(--pc-primary); font-weight: 700; }

/* Author Bio */
.pc-author-bio {
    margin-top: 20px; padding: 16px; background: var(--pc-bg-light);
    border-radius: var(--pc-radius-md); display: flex; gap: 14px; align-items: center;
}
.pc-author-bio__avatar {
    width: 50px; height: 50px; border-radius: 50%; background: #dbeafe;
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.pc-author-bio__name { font-weight: 700; font-size: 14px; }
.pc-author-bio__desc { font-size: 12px; color: var(--pc-text-muted); line-height: 1.5; }

/* ===================================
   CITY PAGE
   =================================== */
.pc-city-hero {
    background: linear-gradient(135deg, var(--pc-primary), #0f4c63);
    border-radius: var(--pc-radius-xl); padding: 40px 44px; color: var(--pc-white);
    margin: 16px auto; max-width: var(--pc-container);
}
.pc-city-hero__title { font-size: 32px; font-weight: 900; margin-bottom: 10px; }
.pc-city-hero__desc { opacity: 0.9; font-size: 15px; margin-bottom: 16px; max-width: 700px; line-height: 1.6; }
.pc-city-stats { display: flex; gap: 30px; margin-top: 16px; }
.pc-city-stat__number { font-size: 28px; font-weight: 900; color: var(--pc-accent); }
.pc-city-stat__label { font-size: 11px; opacity: 0.8; }
.pc-map-placeholder {
    background: var(--pc-border); border-radius: var(--pc-radius-lg); height: 300px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--pc-text-muted); margin: 16px 0;
}

/* ===================================
   HELP CENTER
   =================================== */
.pc-help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pc-help-card {
    background: var(--pc-white); border-radius: var(--pc-radius-lg); padding: 24px;
    text-align: center; box-shadow: var(--pc-shadow-sm); border: 1px solid var(--pc-border);
    transition: transform 0.2s, border-color 0.2s;
}
.pc-help-card:hover { transform: translateY(-2px); border-color: var(--pc-primary); }
.pc-help-card__icon { font-size: 32px; margin-bottom: 10px; }
.pc-help-card__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pc-help-card__text { font-size: 12px; color: var(--pc-text-muted); }
.pc-help-card__count { font-size: 11px; color: var(--pc-primary); font-weight: 700; margin-top: 6px; }
.pc-help-article {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    border-bottom: 1px solid var(--pc-border-light); font-size: 13px; transition: background 0.2s;
}
.pc-help-article:hover { background: var(--pc-bg-light); }
.pc-help-article__icon { font-size: 18px; }

/* ===================================
   NEWSLETTER
   =================================== */
.pc-newsletter {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-dark));
    color: var(--pc-white); border-radius: var(--pc-radius-md); padding: 20px;
}
.pc-newsletter__title { color: var(--pc-accent); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.pc-newsletter__text { font-size: 12px; opacity: 0.9; margin-bottom: 10px; }
.pc-newsletter input[type="email"] {
    width: 100%; padding: 10px; border-radius: var(--pc-radius-sm);
    border: none; font-family: var(--pc-font); font-size: 13px; margin-bottom: 8px;
}
.pc-newsletter button {
    width: 100%; padding: 10px; background: var(--pc-accent); color: var(--pc-white);
    border: none; border-radius: var(--pc-radius-sm); font-weight: 700;
    font-family: var(--pc-font); cursor: pointer; transition: background 0.2s;
}
.pc-newsletter button:hover { background: var(--pc-accent-dark); }

/* ===================================
   FILTERS
   =================================== */
.pc-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.pc-filters select {
    padding: 10px 14px; border: 2px solid var(--pc-border); border-radius: 10px;
    font-family: var(--pc-font); font-size: 13px; color: var(--pc-text);
    background: var(--pc-white); cursor: pointer; transition: border-color 0.2s;
}
.pc-filters select:focus { border-color: var(--pc-primary); outline: none; }

/* ===================================
   FOOTER
   =================================== */
.pc-footer { background: #1a202c; color: var(--pc-white); padding: 44px 36px 26px; margin-top: 44px; }
.pc-footer__grid {
    max-width: var(--pc-container); margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 24px;
}
.pc-footer__logo { font-size: 22px; font-weight: 900; color: var(--pc-primary); margin-bottom: 8px; }
.pc-footer__title { font-size: 13px; font-weight: 700; margin-bottom: 14px; opacity: 0.9; }
.pc-footer p, .pc-footer a {
    font-size: 12px; color: var(--pc-text-faint); line-height: 2; text-decoration: none; display: block;
}
.pc-footer a:hover { color: var(--pc-white); }
.pc-footer__copy {
    text-align: center; padding-top: 20px; margin-top: 24px;
    border-top: 1px solid #2d3748; color: var(--pc-text-muted); font-size: 11px;
    max-width: var(--pc-container); margin-left: auto; margin-right: auto;
}
.pc-footer__copy a { display: inline; color: #38bdf8; }

/* ===================================
   PAGINATION
   =================================== */
.pc-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; flex-wrap: wrap; }
.pc-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px; font-size: 14px; font-weight: 700;
    text-decoration: none; color: var(--pc-text); background: var(--pc-white);
    border: 1px solid var(--pc-border); transition: all 0.2s;
}
.pc-pagination .page-numbers.current, .pc-pagination .page-numbers:hover {
    background: var(--pc-primary); color: var(--pc-white); border-color: var(--pc-primary);
}
.pc-pagination .page-numbers.dots { background: transparent; border: none; }

/* ===================================
   UTILITIES
   =================================== */
.pc-text-center { text-align: center; }
.pc-mt-1 { margin-top: 8px; }
.pc-mt-2 { margin-top: 16px; }
.pc-mt-3 { margin-top: 24px; }
.pc-mt-4 { margin-top: 36px; }
.pc-mb-1 { margin-bottom: 8px; }
.pc-mb-2 { margin-bottom: 16px; }
.pc-mb-3 { margin-bottom: 24px; }