/* ============================================
   PetBase - Dedicated Styles
   Gold accent #c8943e — polished & eye-catching
   ============================================ */

:root {
    --pb-gold: #c8943e;
    --pb-gold-light: #e0b060;
    --pb-gold-dark: #a07030;
    --pb-gold-bg: rgba(200, 148, 62, 0.06);
}

/* ===== Scroll Animations ===== */
.pb-animate {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pb-visible {
    opacity: 1;
    transform: translateY(0);
}
.pb-animate:nth-child(2) { transition-delay: 0.08s; }
.pb-animate:nth-child(3) { transition-delay: 0.16s; }
.pb-animate:nth-child(4) { transition-delay: 0.24s; }
.pb-animate:nth-child(5) { transition-delay: 0.32s; }
.pb-animate:nth-child(6) { transition-delay: 0.40s; }

/* ===== Buttons ===== */
.pb-btn-gold {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%) !important;
    box-shadow: 0 4px 14px rgba(200, 148, 62, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.pb-btn-gold:hover {
    box-shadow: 0 8px 30px rgba(200, 148, 62, 0.45) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.pb-btn-outline {
    border: 2px solid var(--pb-gold) !important;
    color: var(--pb-gold) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}
.pb-btn-outline:hover {
    background: var(--pb-gold) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(200, 148, 62, 0.25) !important;
}

.pb-btn-glow {
    position: relative;
    overflow: hidden;
}
.pb-btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: pb-btn-shimmer 3s ease-in-out infinite;
}
@keyframes pb-btn-shimmer {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

.pb-btn-cta-white {
    background: white !important;
    color: var(--pb-gold) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}
.pb-btn-cta-white:hover {
    background: #fffaf0 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* ===== Section headers ===== */
.pb-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.pb-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pb-gold);
    background: var(--pb-gold-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 148, 62, 0.12);
}
.pb-section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.pb-section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Accent ===== */
.pb-accent {
    color: var(--pb-gold);
}
.pb-accent-gradient {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 50%, #d4a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero ===== */
.pb-hero {
    padding: 8rem 0 5rem;
    text-align: center;
    background: linear-gradient(180deg, #fdf8f0 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Mesh background */
.pb-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 148, 62, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 148, 62, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(200, 148, 62, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Subtle dot grid */
.pb-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200, 148, 62, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
    opacity: 0.5;
}

/* Glow effects */
.pb-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}
.pb-hero__glow--1 {
    top: -80px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(200, 148, 62, 0.12);
    animation: pb-glow-pulse 6s ease-in-out infinite;
}
.pb-hero__glow--2 {
    bottom: -60px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(200, 148, 62, 0.08);
    animation: pb-glow-pulse 8s ease-in-out 2s infinite;
}
.pb-hero__glow--3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: rgba(200, 148, 62, 0.05);
    animation: pb-glow-pulse 10s ease-in-out 1s infinite;
}

@keyframes pb-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Floating emojis */
.pb-hero__float {
    position: absolute;
    font-size: 2.2rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    animation: pb-float 8s ease-in-out infinite;
}
.pb-hero__float--1 { top: 20%; left: 6%; animation-delay: 0s; }
.pb-hero__float--2 { top: 15%; right: 8%; animation-delay: 2s; font-size: 1.8rem; }
.pb-hero__float--3 { bottom: 25%; left: 12%; animation-delay: 4s; font-size: 2rem; }
.pb-hero__float--4 { bottom: 20%; right: 12%; animation-delay: 3s; font-size: 1.5rem; }

@keyframes pb-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(6deg); }
    50% { transform: translateY(-10px) rotate(-4deg); }
    75% { transform: translateY(-24px) rotate(4deg); }
}

.pb-hero__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pb-logo-img {
    height: 20px;
    width: auto;
}

.pb-hero__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.pb-hero__desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.pb-hero__badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.pb-badge-item {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 148, 62, 0.15);
    color: var(--pb-gold-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.pb-badge-item:hover {
    border-color: var(--pb-gold);
    box-shadow: 0 6px 20px rgba(200, 148, 62, 0.15);
    transform: translateY(-2px);
    background: white;
}

.pb-badge-check {
    color: #10b981;
    font-weight: 700;
    margin-right: 0.3rem;
}

.pb-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.pb-hero__trust {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.pb-hero__trust span {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
    opacity: 0.7;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(200, 148, 62, 0.1);
    border-radius: 100px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

/* ===== Features ===== */
.pb-feature {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pb-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--pb-gold-bg) 0%, rgba(200, 148, 62, 0.12) 100%);
    border-radius: 18px;
    transition: all 0.3s ease;
}
.pb-feature:hover {
    border-color: var(--pb-gold);
    box-shadow: 0 16px 40px rgba(200, 148, 62, 0.15);
    transform: translateY(-8px);
}
.pb-feature:hover .pb-feature__icon {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(200, 148, 62, 0.3);
}

/* ===== App Mockup ===== */
.pb-mockup {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}
.pb-mockup:hover {
    box-shadow: 0 32px 100px rgba(200, 148, 62, 0.12);
    transform: translateY(-4px);
}

.pb-mockup__header {
    background: #1a1d23;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pb-mockup__dots {
    display: flex;
    gap: 6px;
}
.pb-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.pb-mockup__dots span:nth-child(1) { background: #ff5f57; }
.pb-mockup__dots span:nth-child(2) { background: #febc2e; }
.pb-mockup__dots span:nth-child(3) { background: #28c840; }

.pb-mockup__url {
    margin-left: 12px;
    background: #2a2d35;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 11px;
    color: var(--pb-gold-light);
    flex: 1;
    font-family: monospace;
}
.pb-mockup__content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 350px;
}
.pb-mockup__sidebar {
    background: var(--color-bg);
    border-right: 1px solid var(--color-border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pb-mockup__item {
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    cursor: default;
    transition: all 0.2s ease;
}
.pb-mockup__item:hover {
    background: rgba(200, 148, 62, 0.08);
    color: var(--pb-gold);
}
.pb-mockup__item--active {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(200, 148, 62, 0.3);
}
.pb-mockup__item--active:hover {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    color: white;
}
.pb-mockup__main {
    padding: 1.5rem;
}

/* ===== Stats bar ===== */
.pb-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.pb-stat {
    position: relative;
}
.pb-stat::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}
.pb-stat:last-child::after { display: none; }

.pb-stat__num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.pb-stat__label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ===== Pricing ===== */
.pb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pb-pricing-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.pb-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-gold), var(--pb-gold-light));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pb-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(200, 148, 62, 0.15);
}
.pb-pricing-card:hover::before { opacity: 1; }

.pb-pricing-card--featured {
    border-color: var(--pb-gold);
    box-shadow: 0 8px 32px rgba(200, 148, 62, 0.18);
    background: linear-gradient(180deg, rgba(200, 148, 62, 0.03) 0%, var(--color-surface) 100%);
}
.pb-pricing-card--featured::before { opacity: 1; }

.pb-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(200, 148, 62, 0.35);
}

.pb-pricing__name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.pb-pricing__price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1;
}
.pb-pricing__period {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}
.pb-pricing__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}
.pb-pricing__features li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pb-pricing__features li:last-child { border-bottom: none; }

.pb-pricing-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Addons ===== */
.pb-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.pb-addon {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.pb-addon:hover {
    border-color: var(--pb-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 148, 62, 0.12);
}
.pb-addon__cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pb-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pb-addon h4 { margin: 0.5rem 0; font-size: 1rem; }
.pb-addon__price {
    color: var(--pb-gold);
    font-weight: 700;
    font-size: 1rem;
}

/* ===== Timeline ===== */
.pb-timeline {
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
/* Connecting line */
.pb-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 24px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(180deg, var(--pb-gold), var(--pb-gold-light), rgba(200, 148, 62, 0.2));
}

.pb-timeline__item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem 0;
    position: relative;
}
.pb-timeline__num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(200, 148, 62, 0.35);
    position: relative;
    z-index: 1;
}
.pb-timeline__item p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Deploy boxes ===== */
.pb-deploy-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.pb-deploy-box {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.pb-deploy-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}
.pb-deploy-box--fast {
    border-color: var(--pb-gold);
    background: linear-gradient(180deg, rgba(200, 148, 62, 0.03) 0%, var(--color-surface) 100%);
}
.pb-deploy-box h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.pb-deploy-box p { margin: 0.5rem 0; font-size: 0.9rem; color: var(--color-text-secondary); }

/* ===== References ===== */
.pb-ref-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}
.pb-ref-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.pb-ref-logo {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: var(--color-text-secondary) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.pb-ref-logo:hover {
    color: var(--pb-gold) !important;
    border-color: var(--pb-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 148, 62, 0.12);
}

/* ===== Testimonials ===== */
.pb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.pb-testimonial {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}
.pb-testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(200, 148, 62, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.pb-testimonial:hover {
    box-shadow: 0 12px 36px rgba(200, 148, 62, 0.1);
    transform: translateY(-4px);
    border-color: rgba(200, 148, 62, 0.2);
}
.pb-testimonial__stars {
    color: var(--pb-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.pb-testimonial__text {
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.pb-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pb-testimonial__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(200, 148, 62, 0.25);
}
.pb-testimonial__author { font-weight: 700; font-size: 0.95rem; }
.pb-testimonial__role { font-size: 0.8rem; color: var(--color-text-secondary); }

/* ===== FAQ ===== */
.pb-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.pb-faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}
.pb-faq__item:hover { border-color: rgba(200, 148, 62, 0.3); }
.pb-faq__item[open] {
    border-color: var(--pb-gold);
    box-shadow: 0 4px 16px rgba(200, 148, 62, 0.08);
}
.pb-faq__item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}
.pb-faq__item summary::-webkit-details-marker { display: none; }
.pb-faq__item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--pb-gold);
    flex-shrink: 0;
    margin-left: 1rem;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: var(--pb-gold-bg);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.pb-faq__item[open] summary::after {
    content: '\2212';
    background: var(--pb-gold);
    color: white;
}
.pb-faq__item summary:hover { background: var(--pb-gold-bg); }
.pb-faq__item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.92rem;
}

/* ===== CTA ===== */
.pb-cta {
    background: linear-gradient(135deg, var(--pb-gold) 0%, var(--pb-gold-light) 50%, #d4a853 100%);
    padding: 4rem 2rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}
.pb-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}
.pb-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}
.pb-cta__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}
.pb-cta h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
}
.pb-cta__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
    font-weight: 500;
}

/* ===== Contact ===== */
.pb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}
.pb-contact-info {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
}
.pb-contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.pb-contact-item {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.pb-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.pb-contact-label {
    min-width: 70px;
    color: var(--pb-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-top: 2px;
}
.pb-contact-item a {
    color: var(--pb-gold);
    text-decoration: none;
    font-weight: 500;
}
.pb-contact-item a:hover { text-decoration: underline; }

.pb-contact-form-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
}
.pb-contact-form-wrap h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .pb-mockup__content { grid-template-columns: 1fr; }
    .pb-mockup__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    .pb-stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .pb-stat::after { display: none; }
}

@media (max-width: 768px) {
    .pb-hero { padding: 6rem 0 3rem; }
    .pb-logo-img { height: 16px; }
    .pb-hero__float { display: none; }
    .pb-hero__badges { flex-direction: column; align-items: center; }
    .pb-pricing-grid { grid-template-columns: 1fr; }
    .pb-contact-grid { grid-template-columns: 1fr; }
    .pb-pricing-card { padding: 2rem 1.5rem; }
    .pb-stats-bar { grid-template-columns: 1fr; }
    .pb-stat::after { display: none; }
}
