/* ============================================================ */
/* PezPC Design Tokens                                          */
/* Brand: near-black surfaces, #FFAA00 yellow accent.           */
/* ============================================================ */
:root {
    --brand-yellow: #FFAA00;
    --brand-yellow-hover: #E69500;
    --brand-yellow-soft: #FFF4DB;
    --ink: #0A0A0A;
    --ink-soft: #1F2937;
    --muted: #6B7280;
    --surface: #FFFFFF;
    --surface-alt: #F7F7F5;
    --border: #E5E7EB;

    --bs-primary: var(--brand-yellow);
    --bs-primary-rgb: 255, 170, 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink-soft);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3,
.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.text-brand { color: var(--brand-yellow) !important; }
.bg-ink { background: var(--ink); color: #fff; }
.bg-surface-alt { background: var(--surface-alt); }

a { color: var(--ink); text-decoration-color: var(--brand-yellow); text-underline-offset: 3px; }
a:hover { color: var(--brand-yellow-hover); }

/* ============================================================ */
/* Buttons                                                      */
/* ============================================================ */
.btn-brand {
    background: var(--brand-yellow);
    color: var(--ink);
    font-weight: 600;
    border: 1px solid var(--brand-yellow);
    padding: 0.7rem 1.4rem;
}
.btn-brand:hover {
    background: var(--brand-yellow-hover);
    border-color: var(--brand-yellow-hover);
    color: var(--ink);
}
.btn-outline-ink {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-outline-light-brand {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}
.btn-outline-light-brand:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

/* ============================================================ */
/* Navbar                                                       */
/* ============================================================ */
.navbar-pez {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-pez .navbar-brand {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.navbar-pez .navbar-brand .dot { color: var(--brand-yellow); }
.brand-logo {
    display: inline-block;
    object-fit: contain;
    border-radius: 6px;
}
.navbar-pez .nav-link { color: rgba(255,255,255,0.78); font-weight: 500; }
.navbar-pez .nav-link:hover { color: var(--brand-yellow); }

/* ============================================================ */
/* Hero                                                         */
/* ============================================================ */
.hero {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,170,0,0.12), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,170,0,0.06), transparent 60%),
        var(--ink);
    color: #fff;
    padding: 8rem 0 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero h1 {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
}
.hero .lead {
    color: rgba(255,255,255,0.78);
    font-size: 1.15rem;
    max-width: 38rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    margin-bottom: 1.25rem;
}
.hero-eyebrow .pulse {
    width: 8px; height: 8px; background: var(--brand-yellow); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,170,0,0.6);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(255,170,0,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(255,170,0,0);  }
    100% { box-shadow: 0 0 0 0   rgba(255,170,0,0);  }
}

/* ============================================================ */
/* Section helpers                                              */
/* ============================================================ */
section { padding: 5rem 0; }
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
.section-sub { color: var(--muted); max-width: 42rem; }

/* ============================================================ */
/* Service cards                                                */
/* ============================================================ */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -18px rgba(10,10,10,0.18);
    border-color: rgba(255,170,0,0.5);
}
.service-card .icon-wrap {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-yellow-soft);
    color: var(--ink);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ============================================================ */
/* Why-us trust points                                          */
/* ============================================================ */
.trust-point .icon-wrap {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--brand-yellow);
    color: var(--brand-yellow);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}
.trust-point h4 { font-size: 1.05rem; }
.trust-point p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================ */
/* About                                                        */
/* ============================================================ */
.about-quote {
    border-left: 3px solid var(--brand-yellow);
    padding-left: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--ink);
}

/* ============================================================ */
/* Contact                                                      */
/* ============================================================ */
.contact-card {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-card h2 { color: #fff; }
.contact-card .lead { color: rgba(255,255,255,0.75); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    padding: 0.6rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; gap: 0.9rem; align-items: center;
}
.contact-list li:first-child { border-top: 0; }
.contact-list .icon-wrap {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,170,0,0.12);
    color: var(--brand-yellow);
    border-radius: 8px;
}
.email-reveal {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.01em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,170,0,0.5);
}
.email-reveal:hover { color: var(--brand-yellow); }

/* ============================================================ */
/* Footer                                                       */
/* ============================================================ */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.92rem;
}
footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
footer a:hover { color: var(--brand-yellow); }
footer .pez-mark { color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
footer .pez-mark .dot { color: var(--brand-yellow); }
