
/* Pixel-close CSS tuned to match provided mockups (desktop) */
:root{
  --page-bg:#eef2f5;
  --card-bg:#ffffff;
  --shadow:0 22px 48px rgba(20, 35, 55, .18);
  --radius:10px;

  --blue-top:#2f5f92;
  --blue-bot:#274e7d;

  --blue2-top:#3a5f94;
  --blue2-bot:#2a4d7a;

  --ice-top:#e9f2fb;
  --ice-bot:#dfeaf6;

  --text:#0f1b2a;
  --muted:#6d7c92;
  --line:#dfe7f1;

  --green-top:#2fb35f;
  --green-bot:#219a52;

  --yellow:#ffd34d;

  --timer-top:#2a3a53;
  --timer-bot:#1f2c41;
}

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

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 18px;
}

.card{
  width:920px;
  max-width:100%;
  background:var(--card-bg);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.header{
  padding:26px 36px 18px 36px;
  background:linear-gradient(180deg, var(--blue2-top), var(--blue2-bot));
  color:#fff;
}
.header h1{
  margin:0;
  font-size:44px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:.1px;
}
.header p{
  margin:10px 0 0 0;
  font-size:18px;
  line-height:1.25;
  opacity:.92;
}

/* compact header (Device Protected mockup) */
.header.compact{
  padding:22px 36px 18px 36px;
  background:linear-gradient(180deg, #405f8d, #2d4f7b);
}
.header.compact h1{
  font-size:34px;
  font-weight:800;
}
.header.compact p{
  font-size:16px;
}

/* ice header (Online Privacy / Protect Online Activity mockups) */
.header.ice{
  background:linear-gradient(180deg, var(--ice-top), var(--ice-bot));
  color:var(--text);
}
.header.ice p{color:#4f617b; opacity:1}

.body{
  padding:26px 36px 22px 36px;
  position:relative;
}

.row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:26px;
}

.left{
  flex:1 1 auto;
  min-width:0;
}
.right{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
  min-width:320px;
}

/* checklist styles */
.list{
  margin:0;
  padding:0;
  list-style:none;
}
.item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:10px 0;
  font-size:18px;
  color:#1b2a41;
}
.icon{
  width:24px;
  height:24px;
  flex:0 0 auto;
  margin-top:1px;
}

/* checkmarks without circle (Device Protected mockup) */
.icon.check-only svg path{stroke:#2fb35f}

/* circle check (other mockups) */
.icon.circle-check svg circle{fill:#2fb35f}
.icon.circle-check svg path{stroke:#fff}

.small-note{
  margin-top:10px;
  color:#6b7a90;
  font-size:14px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 22px;
  background:linear-gradient(180deg, var(--green-top), var(--green-bot));
  color:#fff;
  font-weight:900;
  border-radius:7px;
  text-decoration:none;
  min-width:360px;
  box-shadow:0 14px 22px rgba(34, 166, 88, .22);
  border:1px solid rgba(0,0,0,.10);
  letter-spacing:.2px;
}
.btn.small{min-width:310px}
.btn.wide{min-width:470px}
.btn:active{transform:translateY(1px)}
.arrow{
  font-size:20px;
  line-height:1;
  opacity:.95;
}

/* footer */
.footer{
  border-top:1px solid var(--line);
  padding:16px 36px 18px 36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#5e6f88;
  font-size:13px;
  background:#fff;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#243a5c;
  font-weight:800;
}
.brand small{
  display:block;
  font-weight:600;
  color:#5378b6;
  margin-top:2px;
  font-size:12px;
}
.win{
  width:28px;
  height:28px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2px;
}
.win span{
  background:#2b7ae5;
  border-radius:1px;
  display:block;
}
.links a{
  color:#2b63c9;
  text-decoration:none;
}

/* windows compatible badge (Device Protected mockup) */
.compat{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.winLogo{
  width:34px;
  height:34px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
}
.winLogo span{background:#2b7ae5; display:block; border-radius:1px}
.compatText{
  line-height:1.05;
}
.compatText b{
  display:block;
  font-size:22px;
  font-weight:900;
  color:#1b2a41;
}
.compatText span{
  display:block;
  font-size:18px;
  color:#2b63c9;
}

/* Discount header title line with yellow */
.offerLine{
  margin:0 0 10px 0;
  font-size:40px;
  font-weight:950;
  letter-spacing:.1px;
}
.offerLine .hl{color:var(--yellow)}
.subLine{
  margin:0 0 14px 0;
  color:#ffffff;
  opacity:.95;
  font-size:18px;
}
/* For Discount mockup: heading contains an en dash, keep spacing */
.header.discount h1{font-size:44px}
.header.discount .sub{margin-top:10px}

/* timer */
.timerBlock{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.timerBox{
  display:flex;
  gap:8px;
  align-items:center;
}
.digit{
  width:64px;
  height:46px;
  background:linear-gradient(180deg, var(--timer-top), var(--timer-bot));
  border-radius:8px;
  color:var(--yellow);
  font-weight:950;
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 22px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
}
.sep{
  color:#d8e0ec;
  font-weight:950;
  font-size:32px;
  padding-top:6px;
}
.timerLabels{
  display:flex;
  gap:34px;
  justify-content:flex-end;
  color:#c8d3e3;
  font-size:13px;
  margin-top:6px;
}
.timerLabels span{
  width:64px;
  text-align:center;
  opacity:.8;
}

/* bottom consent line inside body (Discount + Protect Online Activity mockups) */
.consent{
  margin-top:18px;
  border-top:1px solid rgba(223,231,241,.0);
  color:#7b8aa3;
  font-size:12px;
  text-align:center;
}
.consent a{color:#2b63c9; text-decoration:none}

/* Comparison: white header */
.header.white{
  background:#fff;
  color:var(--text);
  border-bottom:1px solid var(--line);
}
.header.white h1{
  font-size:34px;
  font-weight:900;
}
.header.white p{
  color:#5f7088;
  opacity:1;
  font-size:16px;
}

/* Comparison: feature tiles */
.tiles{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin:18px 0 18px 0;
}
.tile{
  border:1px solid #e6eef7;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
  border-radius:10px;
  padding:16px 16px 14px 16px;
  box-shadow:0 12px 20px rgba(14,30,53,.08);
}
.tileTop{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:900;
  color:#20324a;
  line-height:1.05;
  font-size:18px;
}
.tileDesc{
  margin-top:10px;
  color:#5f7088;
  font-size:13px;
  line-height:1.25;
}
/* Comparison variant (Top Rated Antivirus...) uses icons with background cards */
.tileIcon{
  width:34px;
  height:34px;
  flex:0 0 auto;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 16px rgba(14,30,53,.10);
  border:1px solid rgba(0,0,0,.06);
}
.tileIcon.green{background:linear-gradient(180deg,#e9f7ef,#d9f1e3)}
.tileIcon.blue{background:linear-gradient(180deg,#eaf2fb,#dbe9fb)}

/* responsive */
@media (max-width:980px){
  .card{width:760px}
  .header h1{font-size:36px}
  .header.compact h1{font-size:30px}
  .row{flex-direction:column}
  .right{align-items:flex-start; min-width:0}
  .btn,.btn.small,.btn.wide{min-width:100%}
  .tiles{grid-template-columns:1fr}
  .digit{width:56px}
  .timerLabels span{width:56px}
  .timerLabels{gap:26px}
}
