/* PDS Payroll — Pacific Data Services */
:root {
  --navy: #0a2540;
  --gold: #d4a843;
  --teal: #1a6b5a;
  --light: #f8f9fa;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6c757d;
  --border: #e9ecef;
  --red: #d9534f;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }



/* LOGO */
.logo-full { height: 46px; width: auto; display: block; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: .75rem 2rem; border-radius: 6px; font-weight: 700; font-size: 1rem; transition: all .2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #c49a35; color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,168,67,.4); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: .75rem 2rem; border-radius: 6px; font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,.6); transition: all .2s; }
.btn-secondary:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-outline { display: inline-block; background: transparent; color: var(--navy); padding: .65rem 1.5rem; border-radius: 6px; font-weight: 600; border: 2px solid var(--navy); transition: all .2s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* HEADER */
.site-header { background: var(--navy); padding: 1rem 0; position: fixed; top: 0; left: 0; right: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.site-header.scrolled { background: var(--navy); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-logo { display: flex; align-items: center; text-decoration: none; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: var(--gold); }
.main-nav .btn-cta { background: var(--gold); color: var(--navy); padding: .5rem 1.25rem; border-radius: 6px; font-weight: 700; }
.main-nav .btn-cta:hover { background: #c49a35; }
.nav-phone { color: var(--gold) !important; font-weight: 700; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* HERO */
.hero { position: relative; min-height: 92vh; padding-top: 70px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.42) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .6rem; z-index: 2; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: background .3s; }
.hero-dot.active { background: rgba(255,255,255,.95); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-logo-full { width: clamp(260px, 38vw, 420px); height: auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6)); margin-bottom: .5rem; }
.hero-eyebrow { display: inline-block; background: rgba(212,168,67,.2); color: var(--gold); border: 1px solid rgba(212,168,67,.3); padding: .35rem 1rem; border-radius: 20px; font-size: .85rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* TRUST BAR */
.trust-bar { background: var(--gold); padding: 1rem 0; }
.trust-bar-inner { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem; color: var(--navy); }
.trust-item svg { flex-shrink: 0; }

/* SECTIONS */
section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: .5rem; letter-spacing: -.02em; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-label { text-transform: uppercase; font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); margin-bottom: .5rem; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; transition: all .2s; }
.service-card:hover { box-shadow: 0 8px 24px rgba(10,37,64,.1); transform: translateY(-2px); border-color: var(--teal); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--muted); }

/* COMPETITOR SECTION */
.competitor-section { background: var(--light); }
.rating-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.rating-badge { background: #fff3cd; border: 1px solid #ffc107; border-radius: 10px; padding: 1rem 1.75rem; text-align: center; }
.rating-badge .score { font-size: 1.8rem; font-weight: 800; color: var(--red); line-height: 1; }
.rating-badge .company { font-weight: 700; margin: .2rem 0; }
.rating-badge .source { font-size: .8rem; color: var(--muted); }
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.quote-col h4 { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .95rem; padding-bottom: .6rem; border-bottom: 2px solid var(--border); }
.quote-col h4 .badge { background: var(--red); color: #fff; font-size: .75rem; padding: .2rem .5rem; border-radius: 4px; font-weight: 700; }
blockquote { background: var(--white); border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 0 0 .85rem; }
blockquote p { font-size: .9rem; color: #444; margin-bottom: .4rem; font-style: italic; }
blockquote footer { font-size: .78rem; color: var(--muted); }
.pds-contrast { background: linear-gradient(135deg, #0a2540, #0d3b5e); border-radius: 12px; padding: 1.75rem 2rem; text-align: center; color: var(--white); max-width: 750px; margin: 0 auto; }
.pds-contrast p:first-child { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.pds-contrast p:last-of-type { color: rgba(255,255,255,.8); font-size: .95rem; }

/* CHECKLIST */
.checklist-section { background: var(--white); }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 2rem; max-width: 700px; margin: 0 auto; }
.checklist-item { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; font-size: .95rem; color: var(--text); border-bottom: 1px solid var(--border); }
.checklist-item .check { color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ABOUT SNIPPET */
.about-snippet { background: linear-gradient(135deg, #0a2540 0%, #1a4a6e 100%); color: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: rgba(255,255,255,.85); margin-bottom: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 1.25rem; text-align: center; }
.about-stat .number { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.about-stat .label { font-size: .85rem; color: rgba(255,255,255,.7); }

/* CTA / QUOTE FORM */
.cta-section { background: var(--light); }
.quote-form-wrap { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(10,37,64,.1); }
.quote-form-wrap h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.quote-form-wrap p { color: var(--muted); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--border); border-radius: 6px; padding: .6rem .9rem; font-size: .95rem; color: var(--text); transition: border-color .2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,107,90,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 1rem; }
.form-submit .btn-primary { width: 100%; padding: .9rem; font-size: 1.05rem; text-align: center; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .5rem; text-align: center; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .footer-logo-name { color: var(--white); font-weight: 800; font-size: 1.1rem; }
.footer-brand .footer-logo-tag { color: var(--gold); font-size: .75rem; margin-bottom: .75rem; display: block; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h6 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .85rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom span { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ACCESSIBILITY */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .checklist-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 3rem 0; }
  .hero-cta-group { flex-direction: column; }
  .trust-bar-inner { gap: 1.25rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
