:root {
  --orange: #e87722;
  --navy: #1b2a4a;
  --white: #ffffff;
  --light-blue: #e8f0fe;
  --light-gray: #f5f5f5;
  --text: #333333;
  --green: #2e7d32;
  --purple: #6a1b9a;
  --max-width: 1140px;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
header { background: var(--white); border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 20; }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; }
.logo { font-weight: 700; color: var(--navy); font-size: 1.2rem; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 14px 24px; border-radius: 8px; font-weight: 700; transition: 0.2s ease; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-primary:hover,.btn-secondary:hover { opacity: 0.92; }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.hero { background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%); padding: 88px 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }
.hero-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-top: 6px solid var(--orange); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--light-gray); }
.section-blue { background: var(--light-blue); }
.eyebrow { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-size: 0.9rem; }
h1,h2,h3 { color: var(--navy); line-height: 1.2; }
h1 { font-size: 2.8rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-bottom: 16px; }
ul { padding-left: 20px; }
li { margin-bottom: 10px; }
.card-grid,.shift-grid,.pricing-wrap { display: grid; gap: 22px; margin-top: 28px; }
.card-grid { grid-template-columns: repeat(3,1fr); }
.shift-grid { grid-template-columns: repeat(3,1fr); }
.pricing-wrap { grid-template-columns: repeat(3,1fr); }
.card,.shift-card,.price-card,.faq-item,.testimonial { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 5px 16px rgba(0,0,0,0.05); }
.shift-card { border-left: 5px solid var(--orange); }
.shift-number { color: var(--green); font-weight: 700; margin-bottom: 8px; }
.price-card.featured { border-top: 6px solid var(--orange); transform: scale(1.02); }
.price-card { border-top: 6px solid var(--navy); }
.price { font-size: 2rem; font-weight: 700; color: var(--orange); margin: 16px 0; }
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 72px 0; }
.cta-band h2,.cta-band p { color: var(--white); }
.small { font-size: 0.92rem; opacity: 0.9; }
footer { background: #0f1b33; color: var(--white); padding: 30px 0; font-size: 0.95rem; }
.kicker { display: inline-block; background: rgba(232,119,34,0.12); color: var(--orange); padding: 6px 10px; border-radius: 999px; font-weight: 700; margin-bottom: 14px; }
@media (max-width: 900px) {
  .nav,.hero-grid,.card-grid,.shift-grid,.pricing-wrap { grid-template-columns: 1fr; display: grid; }
  .nav { display: flex; flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}
