:root { --accent: #f0a73a; --accent-ink: #20120a; --accent-deep: #8a5b00; }
* { box-sizing: border-box; margin: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #232f3e; background: #fff; line-height: 1.6; }
a { color: #0066c0; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
/* nav */
nav { background: #1d2731; position: sticky; top: 0; z-index: 50; }
nav .wrap { display: flex; align-items: center; gap: 22px; height: 60px; }
.brand { color: #fff; font-size: 18px; font-weight: 300; letter-spacing: 1.3px; }
.brand b { color: var(--accent); font-weight: 800; }
nav a.nl { color: #c7d2de; font-size: 14px; }
nav a.nl:hover { color: #fff; }
nav .phone { margin-left: auto; color: var(--accent); font-weight: 700; font-size: 14px; }
/* hero */
header { background: linear-gradient(135deg, #28333f, #1d2731); color: #fff; padding: 66px 0 56px; }
header h1 { font-size: 38px; line-height: 1.25; max-width: 760px; }
header h1 span { color: var(--accent); }
header p.sub { color: #aab6c2; font-size: 17px; max-width: 660px; margin: 18px 0 30px; }
.cta { display: inline-block; background: var(--accent); color: var(--accent-ink); font-weight: 800; padding: 13px 30px; border-radius: 7px; font-size: 16px; }
.cta:hover { filter: brightness(1.06); }
.cta2 { display: inline-block; color: #fff; border: 1px solid rgba(255,255,255,.35); padding: 12px 24px; border-radius: 7px; font-size: 15px; margin-left: 12px; }
.cta2:hover { border-color: #fff; }
.badges { margin-top: 26px; color: #8a97a5; font-size: 13.5px; }
/* sections */
section { padding: 58px 0; }
section.alt { background: #f4f6f8; }
h2 { font-size: 27px; margin-bottom: 8px; }
p.lead { color: #667; margin-bottom: 32px; max-width: 660px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid #e8ecf0; border-radius: 10px; padding: 20px; }
.card .ic { font-size: 24px; }
.card h3 { font-size: 16px; margin: 8px 0 4px; }
.card p { font-size: 13.5px; color: #667; }
/* product cards (hub) */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.pcard { border: 1px solid #e5e9ee; border-radius: 14px; padding: 26px; background: #fff; display: flex; flex-direction: column; }
.pcard .tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; width: fit-content; }
.pcard h3 { font-size: 21px; margin-bottom: 6px; }
.pcard p.d { color: #667; font-size: 14px; margin-bottom: 12px; }
.pcard ul { list-style: none; margin: 0 0 18px; padding: 0; font-size: 13.5px; color: #556; }
.pcard li { padding: 3px 0; padding-left: 20px; position: relative; }
.pcard li::before { content: '✔'; position: absolute; left: 0; color: var(--accent-deep); font-size: 12px; }
.pcard .row { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-block; font-weight: 700; padding: 10px 20px; border-radius: 7px; font-size: 14px; cursor: pointer; }
.btn.solid { background: var(--accent); color: var(--accent-ink); }
.btn.ghost { border: 1px solid #ccd4dc; color: #33424f; }
.pcard.vcdf { --accent: #f0a73a; --accent-ink: #20120a; --accent-deep: #8a5b00; }
.pcard.vcdf .tag { background: #fff3d6; color: #8a5b00; }
.pcard.sf { --accent: #8ab933; --accent-ink: #16323a; --accent-deep: #3a6b12; }
.pcard.sf .tag { background: #eef7e0; color: #3a6b12; }
/* callout */
.callout { background: linear-gradient(135deg,#28333f,#1d2731); color: #fff; border-radius: 14px; padding: 30px; text-align: center; }
.callout h3 { font-size: 22px; margin-bottom: 8px; }
.callout p { color: #aab6c2; max-width: 640px; margin: 0 auto; font-size: 15px; }
/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: #fff; border: 1px solid #e8ecf0; border-radius: 10px; padding: 20px; }
.step::before { counter-increment: step; content: counter(step); display: inline-block; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-weight: 800; text-align: center; line-height: 30px; margin-bottom: 10px; }
.step h3 { font-size: 15.5px; margin-bottom: 4px; }
.step p { font-size: 13.5px; color: #667; }
/* pricing */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.plan { background: #fff; border: 1px solid #e8ecf0; border-radius: 12px; padding: 26px 22px; text-align: center; }
.plan.hot { border: 2px solid var(--accent); position: relative; }
.plan.hot::after { content: 'Most popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-ink); font-size: 11.5px; font-weight: 800; padding: 2px 12px; border-radius: 10px; }
.plan .orders { font-size: 26px; font-weight: 800; }
.plan .orders small { font-size: 13px; color: #778; font-weight: 600; }
.plan .price { font-size: 22px; font-weight: 800; margin: 10px 0 2px; }
.plan .price small { font-size: 12px; color: #778; font-weight: 600; }
.plan .rate { color: var(--accent-deep); font-weight: 700; font-size: 13.5px; }
.plan ul { list-style: none; margin: 14px 0 0; padding: 0; font-size: 13px; color: #667; }
.plan li { padding: 3px 0; }
.pnote { text-align: center; color: #778; font-size: 13px; margin-top: 18px; }
/* faq */
details { background: #fff; border: 1px solid #e8ecf0; border-radius: 9px; padding: 14px 18px; margin-bottom: 10px; }
summary { font-weight: 700; cursor: pointer; font-size: 15px; }
details p { color: #556; font-size: 14px; margin-top: 8px; }
/* contact */
.contact { display: flex; gap: 30px; flex-wrap: wrap; font-size: 15px; }
.contact div { min-width: 220px; }
.contact b { display: block; margin-bottom: 4px; }
/* footer */
footer { background: #1d2731; color: #8a97a5; padding: 40px 0 26px; font-size: 13.5px; }
footer .cols { display: flex; gap: 50px; flex-wrap: wrap; margin-bottom: 26px; }
footer h4 { color: #fff; font-size: 14px; margin-bottom: 10px; }
footer a { color: #aab6c2; display: block; padding: 2px 0; }
footer a:hover { color: var(--accent); }
.copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
@media (max-width: 640px) { header h1 { font-size: 28px; } nav a.nl { display: none; } }
