:root{
  --bg:#ffffff;
  --text:#0b0f14;
  --muted:#55606d;
  --line:#e6e8ec;
  --card:#ffffff;
  --alt:#f6f7f9;
  --accent:#d40000; /* Canon-like red */
  --accent2:#111827;
  --shadow: 0 14px 40px rgba(16,24,40,.10);
  --radius: 18px;
  --radius2: 12px;
  --container: 1180px;
  --focus: 0 0 0 4px rgba(212,0,0,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--container); padding:0 20px; margin:0 auto}

.skip{
  position:absolute; left:-999px; top:0;
  padding:10px 14px; background:var(--bg); border:1px solid var(--line); border-radius:10px;
}
.skip:focus{left:12px; top:12px; outline:none; box-shadow:var(--focus)}

.topbar{
  position:sticky; top:0; z-index:30;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid rgba(230,232,236,.7);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg, var(--accent), #ff4d4d);
  box-shadow: 0 10px 22px rgba(212,0,0,.22);
}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__meta{font-size:12px; color:var(--muted)}
.topbar__actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:650;
  letter-spacing:.2px;
  transition:transform .08s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn:focus{outline:none; box-shadow:var(--focus)}
.btn--primary{background:var(--accent); color:#fff}
.btn--primary:hover{text-decoration:none; background:#b80000}
.btn--secondary{background:#111827; color:#fff}
.btn--secondary:hover{text-decoration:none; background:#0b1220}
.btn--ghost{background:transparent; border-color:var(--line); color:var(--text)}
.btn--ghost:hover{text-decoration:none; border-color:#cfd5dd; background:rgba(17,24,39,.02)}

.hero{
  padding:46px 0 18px;
  background:
    radial-gradient(1200px 600px at 10% 15%, rgba(212,0,0,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 25%, rgba(17,24,39,.07), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
  border-bottom:1px solid var(--line);
}
.hero__grid{display:grid; grid-template-columns: 1.08fr .92fr; gap:34px; align-items:center}
.breadcrumbs{display:flex; gap:10px; align-items:center; color:var(--muted); font-size:13px; flex-wrap:wrap}
.breadcrumbs a{color:var(--muted)}
h1{margin:14px 0 12px; font-size: clamp(28px, 3.2vw, 46px); line-height:1.08; letter-spacing:-.4px}
.accent{color:var(--accent)}
.lead{font-size:18px; color:#1f2937; margin:0 0 18px}
.micro{font-size:13px; color:var(--muted); margin-top:14px}
.micro a{color:var(--accent); font-weight:650}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 18px}
.chip{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  font-size:13px;
}
.chip:hover{text-decoration:none; border-color:#cfd5dd; background:#fff}
.chips--wrap .chip{margin-bottom:6px}
.chip--static{cursor:default}
.chip--static:hover{border-color:var(--line); background:rgba(255,255,255,.75)}

.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:6px 0 18px}
.hero__badges{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:10px}
.badge{
  border:1px solid var(--line); border-radius:16px; padding:12px 12px;
  background:rgba(255,255,255,.78);
}
.badge__title{font-weight:700; font-size:13px}
.badge__text{color:var(--muted); font-size:13px}

.media-card{
  background:linear-gradient(180deg, #fff, #fbfbfc);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
.media-card img{
  border-radius:14px;
  background:#fff;
}
.media-card__note{
  display:flex; align-items:center; gap:10px;
  padding:10px 10px 0;
  color:var(--muted);
  font-size:13px;
}
.dot{width:9px; height:9px; border-radius:50%; background:var(--accent)}

.brand-logo-wrap{display:flex;justify-content:center;align-items:center;margin:0;padding:0}
.brand-logo-card{display:flex;align-items:center;justify-content:center;max-width:100%;margin:0 auto;padding:18px 24px;border-radius:18px;border:1px solid rgba(17,24,39,.08);background:linear-gradient(180deg,#fff,#fcfcfd);box-shadow:0 14px 32px rgba(16,24,40,.10), inset 0 1px 0 rgba(255,255,255,.95)}
.brand-logo-card__image{display:block;width:min(100%,220px);height:auto;object-fit:contain;filter:none}
@media (max-width:640px){.brand-logo-card{padding:14px 16px}.brand-logo-card__image{width:min(100%,180px)}}
.media-card--logo-only{display:flex;align-items:center;justify-content:center;min-height:100%;padding:26px 18px}
.brand-logo-wrap--solo{margin:0}
.brand-logo-card--plain{padding:0;border:none;background:transparent;box-shadow:none}
.brand-logo-card__image--renz-solo{width:min(100%,240px)}
.brand-logo-card--fellowes-photo{max-width:220px}
.brand-logo-card__image--fellowes-photo{width:min(100%,180px);height:auto;border-radius:10px;background:transparent}
@media (max-width:640px){.media-card--logo-only{padding:20px 14px}.brand-logo-card__image--renz-solo{width:min(100%,200px)}.brand-logo-card__image--fellowes-photo{width:min(100%,150px)}}


.section{padding:54px 0}
.section--alt{background:var(--alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{max-width:860px}
.section__head--center{margin-left:auto; margin-right:auto; text-align:center}
.section__head h2{font-size:32px; margin:0 0 10px; letter-spacing:-.2px}
.section__sub{margin:0; color:var(--muted)}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(3, 1fr); margin-top:22px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:var(--muted)}
.check{margin:0; padding-left:18px; color:#1f2937}
.check li{margin:8px 0}
.check li::marker{color:var(--accent)}

.cta-strip{
  margin-top:22px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:16px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
}
.cta-strip--soft{background:rgba(212,0,0,.03); border-color:rgba(212,0,0,.18)}
.cta-strip__text{color:#111827}
.cta-strip__actions{display:flex; gap:10px; flex-wrap:wrap}

.specs{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px;
  margin-top:18px;
}
.specs__col{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  padding:12px 14px;
}
.spec{
  display:flex; justify-content:space-between; gap:16px;
  padding:10px 4px;
  border-bottom:1px dashed rgba(230,232,236,.9);
}
.spec:last-child{border-bottom:none}
.spec__k{color:var(--muted); font-size:13px}
.spec__v{font-weight:650; text-align:right}

.accordion{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:14px 16px;
}
.accordion summary{
  cursor:pointer;
  font-weight:700;
}
.accordion summary:focus{outline:none; box-shadow:var(--focus); border-radius:12px}
.accordion__body{padding-top:14px; color:var(--muted)}
.two{grid-template-columns:1fr 1fr}
.three{grid-template-columns: repeat(3, 1fr); margin-top:18px}
.pill{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:16px 16px;
}
.pill h3{margin:0 0 8px}
.pill p{margin:0; color:var(--muted)}

.note{
  margin-top:16px;
  border:1px solid rgba(212,0,0,.22);
  background:rgba(212,0,0,.04);
  border-radius:var(--radius);
  padding:16px 16px;
}
.note__title{font-weight:800; margin-bottom:6px}
.note__text{color:#1f2937}

.form-grid{grid-template-columns:1.4fr .6fr; margin-top:22px; align-items:start}
.form-grid--single{grid-template-columns:minmax(0, 760px); justify-content:center}
.form-grid--single .form{margin:0 auto}

.form{position:relative; width:100%}
.form-aside{display:flex; flex-direction:column; gap:16px}
.mini{display:grid; gap:8px; color:var(--muted); font-size:14px}
.form__row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
.field__label{font-size:13px; color:var(--muted)}
.field__input{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-size:15px;
  outline:none;
  background:#fff;
}
.field__input:focus{box-shadow:var(--focus); border-color:rgba(212,0,0,.35)}
textarea.field__input{resize:vertical; min-height:110px}
.form__checks{display:flex; flex-direction:column; gap:10px; margin:10px 0 14px}
.checkline{display:flex; gap:10px; align-items:flex-start; color:#111827; font-size:13px}
.checkline input{margin-top:2px}
.form__actions{display:flex; gap:10px; flex-wrap:wrap}

.aside{display:flex; flex-direction:column; gap:16px}
.kv{display:grid; grid-template-columns: 1fr 1.25fr; gap:8px; margin-top:10px}
.kv__k{color:var(--muted); font-size:13px}
.kv__v{font-weight:650; font-size:13px}
.aside__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.steps{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.steps li{margin:10px 0}
.hint{color:var(--muted); font-size:13px; margin-top:10px}

.toast{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  display:none;
}
.toast--ok{display:block; border-color:rgba(34,197,94,.35); background:rgba(34,197,94,.06)}
.toast--err{display:block; border-color:rgba(239,68,68,.35); background:rgba(239,68,68,.06)}

.faq{display:grid; gap:10px; margin-top:18px}
.faq__item{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  padding:12px 14px;
}
.faq__item summary{cursor:pointer; font-weight:750}
.faq__body{padding-top:10px; color:var(--muted)}

.footer{
  background:#0b0f14;
  color:#fff;
  padding:34px 0 18px;
}
.brand--footer .brand__meta{color:rgba(255,255,255,.72)}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap:20px;
  align-items:start;
}
.footer__title{font-weight:800; margin-bottom:10px}
.footer__links{display:flex; flex-direction:column; gap:8px; color:rgba(255,255,255,.85)}
.footer__links a{color:#fff}
.footer__small{color:rgba(255,255,255,.7); font-size:12px; margin-top:12px}
.footer__home{margin-top:12px; display:flex; justify-content:flex-start}
.footer .btn--ghost{color:#fff; border-color:rgba(255,255,255,.25)}
.footer .btn--ghost:hover{border-color:rgba(255,255,255,.38); background:rgba(255,255,255,.06)}
.footer__bottom{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:18px;
  padding-top:14px;
  color:rgba(255,255,255,.85);
  font-size:13px;
}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:50}
.modal[aria-hidden="false"]{display:block}
.modal__overlay{position:absolute; inset:0; background:rgba(0,0,0,.55)}
.modal__panel{
  position:relative;
  max-width:560px;
  margin: min(12vh, 120px) auto 0;
  background:#fff;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}
.modal__title{font-weight:850}
.iconbtn{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.iconbtn:focus{outline:none; box-shadow:var(--focus)}
.modal__body{padding:16px 16px 18px; color:#111827}
.modal__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero__badges{grid-template-columns:1fr; }
  .cards{grid-template-columns:1fr 1fr}
  .form-grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
}
@media (max-width: 620px){
  .cards{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .specs{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .three{grid-template-columns:1fr}
}
