* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
header {
    background: #2B3036;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section { display: flex; align-items: center; gap: 0.8rem; }
.logo { width: 55px; height: 55px; object-fit: contain; }
.brand-text p.brand-name { font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; color: #fff; font-family: 'Cambria', Georgia, serif; line-height: 1.3; max-width: 240px; margin: 0; }

/* Accessibility: skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: #B8471C; color: #fff; padding: 0.8rem 1.5rem; z-index: 10000; font-weight: 700; text-decoration: none; border-radius: 0 0 4px 0; }
.skip-link:focus { left: 0; }

/* Accessibility: visible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
 outline: 3px solid #D9622B;
 outline-offset: 2px;
}
nav a:focus-visible { outline-color: #fff; }

/* Accessibility: visually-hidden helper for form labels that shouldn't show visually */
.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; }

nav ul { list-style: none; display: flex; gap: 1.2rem; align-items: center; flex-wrap: nowrap; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; font-size: 0.82rem; transition: color 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: #fff; }

.nav-phone {
    background: #B8471C;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s !important;
    white-space: nowrap !important;
}
.nav-phone:hover { background: #c2551f !important; }

/* Hero */
.hero {
    background: #2B3036;
    padding: 6rem 2rem 5rem;
    text-align: center;
    color: #fff;
}
.hero-content { max-width: 860px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; font-family: 'Cambria', Georgia, serif; font-weight: 700; line-height: 1.25; margin-bottom: 1.2rem; color: #fff; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: #B8471C; color: #fff; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: #c2551f; }
.btn-secondary { display: inline-block; background: transparent; color: #fff; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.2s; }
.btn-secondary:hover { border-color: #fff; }

/* Sections */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 4.5rem 2rem; }

.section-title { font-size: 2rem; font-family: 'Cambria', Georgia, serif; color: #2B3036; font-weight: 700; margin-bottom: 0.5rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: #D9622B; margin-top: 0.8rem; margin-bottom: 2rem; }
.section-title.centered { text-align: center; }
.section-title.centered::after { margin: 0.8rem auto 2rem; }

/* Intro strip */
.intro-strip { background: #f5f5f3; border-left: 4px solid #D9622B; }
.intro-strip p { font-size: 1.1rem; color: #444; line-height: 1.9; max-width: 900px; margin: 0 auto; text-align: center; }

/* Equipment cards */
.equipment-section { background: #fff; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.card-img { width: 100%; height: 200px; background: #e8e8e8; display: flex; align-items: center; justify-content: center; color: #999; font-size: 0.9rem; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.3rem; color: #2B3036; font-family: 'Cambria', Georgia, serif; margin-bottom: 0.6rem; }
.card-body p { color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.card-link { color: #C44A1A; font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.card-link:hover { color: #c2551f; }

/* Surplus grid */
.surplus-section { background: #f5f5f3; }
.surplus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.surplus-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 1.5rem; transition: box-shadow 0.2s; }
.surplus-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.surplus-card h3 { font-size: 1.1rem; color: #2B3036; font-weight: 700; margin-bottom: 0.4rem; }
.surplus-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 3px; margin-bottom: 0.7rem; background: #e8f5e9; color: #2e7d32; }
.surplus-badge.used { background: #e3f2fd; color: #1565c0; }
.surplus-specs { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 1rem; }
.surplus-link { color: #C44A1A; font-weight: 600; text-decoration: none; font-size: 0.9rem; }

/* Why Pete */
.why-pete { background: #2B3036; color: #fff; }
.why-pete .section-title { color: #fff; }
.why-pete .section-title::after { background: #D9622B; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.proof-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 1.5rem; text-align: center; }
.proof-item h3 { font-size: 1.1rem; color: #ED9152; font-weight: 700; margin-bottom: 0.5rem; }
.proof-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* Industries */
.industries-section { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.industry-card { border: 1px solid #e5e5e5; border-radius: 8px; padding: 1.5rem; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; }
.industry-card:hover { border-color: #D9622B; box-shadow: 0 4px 16px rgba(217,98,43,0.1); }
.industry-card h3 { font-size: 1.05rem; color: #2B3036; font-weight: 700; margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* Email signup */
.signup-strip { background: #f5f5f3; border-top: 3px solid #D9622B; text-align: center; padding: 3rem 2rem; }
.signup-strip h3 { font-size: 1.3rem; font-family: 'Cambria', Georgia, serif; color: #2B3036; margin-bottom: 0.5rem; }
.signup-strip p { color: #666; margin-bottom: 1.5rem; }
.signup-form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.signup-form input { flex: 1; min-width: 220px; padding: 0.7rem 1rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; }
.signup-form button { background: #B8471C; color: #fff; border: none; padding: 0.7rem 1.5rem; border-radius: 4px; font-weight: 600; cursor: pointer; }

/* CTA section */
.cta-section { background: #B8471C; text-align: center; padding: 4rem 2rem; }
.cta-section h2 { font-size: 2rem; color: #fff; font-family: 'Cambria', Georgia, serif; margin-bottom: 0.8rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-white { display: inline-block; background: #fff; color: #C44A1A; padding: 0.85rem 2.2rem; border-radius: 4px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: background 0.2s; }
.btn-white:hover { background: #f5f5f3; }

/* Page header */
.page-header { background: #2B3036; padding: 3.5rem 2rem; text-align: center; color: #fff; }
.page-header h1 { font-size: 2.2rem; font-family: 'Cambria', Georgia, serif; color: #fff; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* Content pages */
.page-content { background: #fff; }
.content-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #eee; }
.content-section:last-child { border-bottom: none; }
.content-section h2 { font-size: 1.6rem; font-family: 'Cambria', Georgia, serif; color: #2B3036; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #D9622B; display: inline-block; }
.content-section h3 { font-size: 1.15rem; color: #2B3036; margin-bottom: 0.6rem; margin-top: 1.2rem; font-weight: 700; }
.content-section p { color: #444; line-height: 1.8; margin-bottom: 0.8rem; }
.content-section ul { padding-left: 1.4rem; color: #444; }
.content-section li { margin-bottom: 0.4rem; line-height: 1.7; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.5rem 0; }
.info-box { background: #f5f5f3; border-left: 3px solid #D9622B; padding: 1.5rem; border-radius: 0 6px 6px 0; margin: 1.5rem 0; }
.info-box h3 { color: #2B3036; margin-bottom: 0.8rem; font-weight: 700; }
.highlight { background: #fff3ee; border: 1px solid #f5c4a8; border-radius: 5px; padding: 0.8rem 1rem; color: #2B3036; font-weight: 600; margin-top: 1rem; }

/* Individual surplus listing */
.listing-hero { background: #f5f5f3; padding: 2rem; border-radius: 8px; margin-bottom: 2rem; display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.listing-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.badge { font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 3px; }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.specs-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.specs-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.specs-table td:first-child { color: #666; width: 40%; font-weight: 600; }
.cta-box { background: #fff3ee; border: 2px solid #D9622B; border-radius: 8px; padding: 1.5rem 2rem; text-align: center; margin: 2rem 0; }
.cta-box h3 { color: #C44A1A; font-size: 1.3rem; margin-bottom: 0.5rem; }
.cta-box p { color: #444; margin-bottom: 1rem; }
.back-link { color: #C44A1A; text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-block; margin-bottom: 1.5rem; }
.back-link:hover { color: #c2551f; }

/* Sell page */
.sell-intro { background: #f5f5f3; padding: 2rem; border-radius: 8px; margin-bottom: 2rem; border-left: 4px solid #D9622B; }
.buy-list { list-style: none; padding: 0; }
.buy-list li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid #eee; color: #444; }
.buy-list li::before { content: '✓'; position: absolute; left: 0; color: #C44A1A; font-weight: 700; }

/* About */
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.about-sidebar { background: #f5f5f3; border-radius: 8px; padding: 1.5rem; }
.about-sidebar h3 { color: #2B3036; font-weight: 700; margin-bottom: 1rem; font-size: 1rem; border-bottom: 2px solid #D9622B; padding-bottom: 0.5rem; }
.about-sidebar ul { list-style: none; padding: 0; }
.about-sidebar li { padding: 0.4rem 0; color: #555; font-size: 0.9rem; border-bottom: 1px solid #eee; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.5rem; font-family: 'Cambria', Georgia, serif; color: #2B3036; margin-bottom: 1rem; }
.contact-detail { background: #f5f5f3; border-radius: 6px; padding: 1rem 1.2rem; margin-bottom: 1rem; }
.contact-detail h3 { color: #2B3036; font-weight: 700; margin-bottom: 0.2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail a, .contact-detail p { color: #444; text-decoration: none; font-size: 1rem; }
.contact-detail a:hover { color: #C44A1A; }
.phone-big { font-size: 1.3rem !important; font-weight: 700 !important; color: #C44A1A !important; }
.contact-form-wrap h2 { font-size: 1.5rem; font-family: 'Cambria', Georgia, serif; color: #2B3036; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; color: #333; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #D9622B; }

/* Industry landing pages */
.industry-hero { background: #2B3036; padding: 3.5rem 2rem; color: #fff; }
.industry-hero h1 { font-size: 2rem; font-family: 'Cambria', Georgia, serif; color: #fff; margin-bottom: 0.5rem; }
.industry-hero p { color: rgba(255,255,255,0.75); }
.related-surplus { background: #f5f5f3; border-radius: 8px; padding: 1.5rem; margin-top: 2rem; }
.related-surplus h3 { color: #2B3036; font-weight: 700; margin-bottom: 1rem; }

/* Process steps */
.process-steps { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; margin: 2rem 0; }
.step-box { background: #f5f5f3; border-radius: 8px; padding: 1.2rem; text-align: center; min-width: 140px; max-width: 180px; flex: 1; }
.step-num { background: #B8471C; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; font-weight: 700; }
.step-box h3 { font-size: 0.95rem; color: #2B3036; margin-bottom: 0.3rem; }
.step-box p { font-size: 0.82rem; color: #666; }
.step-arrow { color: #C44A1A; font-size: 1.5rem; font-weight: 700; }

/* Footer */
footer { background: #2B3036; color: #fff; padding: 3rem 2rem 1.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.footer-logo { width: 65px; margin-bottom: 0.8rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none; display: block; margin-bottom: 0.4rem; }
.footer-col a:hover { color: #fff; }
.footer-phone { color: #ED9152 !important; font-weight: 700 !important; font-size: 1rem !important; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 1rem; text-align: center; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero h1 { font-size: 2rem; }
    .two-col, .contact-layout, .about-grid, .form-row { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.6rem; }
}
