:root{
  --bg:#ffffff; --card:#ffffff;
  --ink:#0f172a; --muted:#475569;
  --line:#e7eaf0; --line2:#eef2f7;
  --brand:#6679dc; --brand-700:#4f5fca;
  --brandSoft:rgba(102,121,220,.10);

  /* price themes */
  --price-mint-bg:#e8f9f0;   --price-mint-ink:#146c43;
  --price-amber-bg:#fff4e5;  --price-amber-ink:#a15c07;
  --price-slate-bg:#f1f5f9;  --price-slate-ink:#0f172a;
}

html,body{
  margin:0; padding:0; background:var(--bg); color:var(--ink);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Inter,Roboto,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.wrap{width:min(1180px,92vw);margin-inline:auto;padding-inline:2px}

/* Breadcrumbs */
.crumbs{font-size:12px;color:#667085;padding:14px 0 8px}
.crumbs a{color:#667085;border-bottom:1px dashed #cbd5e1}
.gap-xs{height:8px}

/* Blocks */

.panel{
  background:var(--card);border:1px solid var(--line);border-radius:16px;
  box-shadow:0 10px 24px rgba(16,24,40,.06);padding:14px;
      margin-bottom: 18px;
}
.panel h2{margin:0 0 10px;font-size:18px;letter-spacing:-.01em}

/* ===== HERO ===== */
.panel.hero-panel{background:linear-gradient(180deg,#fbfcff 0%,#fff 100%)}
.hero-wrap{display:grid;gap:14px}
.hero-title{margin:0;font-weight:800;letter-spacing:-.01em;line-height:1.15;font-size:clamp(24px,5.6vw,34px)}
.hero-title .b{color:var(--brand)}
.hero-sub{margin:0;color:var(--muted);font-size:16px;line-height:1.75}


.dotlist{margin:2px 0 0;padding:0;list-style:none}
.dotlist li{position:relative;display:block;padding:2px 0 2px 20px;font-size:15px;line-height:1.6;color:#0f172a}
.dotlist li::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:7px;height:7px;border-radius:50%;background:var(--brand)}
@media (max-width:480px){.dotlist li{padding-left:18px}.dotlist li::before{width:6px;height:6px}}
.hero-meta{margin:2px 0 0;color:#64748b;font-size:13.5px;line-height:1.6}

/* ===== DECISION BOARD ===== */
.board{border:1px solid var(--line);border-radius:16px;background:#fff;overflow:hidden;box-shadow:0 12px 28px rgba(16,24,40,.08)}
.board__head{padding:12px;border-bottom:1px solid var(--line);background:linear-gradient(90deg,rgba(102,121,220,.12),rgba(102,121,220,.03));display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}
.board__title{font-weight:900;color:#26318f;font-size:13px;letter-spacing:.06em;text-transform:uppercase}
.board__body{padding:12px}
.board__grid{display:grid;gap:12px}
@media (min-width:980px){.board__grid{grid-template-columns:1fr 1fr 1fr}}

.plan{border:1px solid var(--line);border-radius:14px;background:#fff;padding:12px;box-shadow:0 6px 16px rgba(16,24,40,.05);display:grid;gap:10px;transition:transform .06s ease, box-shadow .12s ease, border-color .12s ease, background-color .12s ease, opacity .12s ease}
.plan:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(16,24,40,.08)}
.plan--pro{border-color:#cfd7ff;background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);box-shadow:0 10px 22px rgba(102,121,220,.10)}
.plan__top{display:flex;justify-content:space-between;align-items:center;gap:10px}
.plan__name{font-weight:900;letter-spacing:-.01em}
.plan__badge{padding:4px 8px;border-radius:999px;border:1px solid #cfd7ff;background:#eef1ff;font-weight:800;font-size:12px;color:#26318f}
.plan__hint{color:#64748b;font-size:13px}


.pick{display:none;padding:3px 8px;border-radius:999px;border:1px solid #cfd7ff;background:#eef1ff;font-weight:800;font-size:11px;letter-spacing:.04em;text-transform:uppercase;color:#26318f}
.plan.active{border-color:var(--brand);background:#f9fbff;box-shadow:0 18px 36px rgba(102,121,220,.18)}
.plan.active .pick{display:inline-flex}
.plan.dim{opacity:.60}


.fields{display:grid;gap:6px}
.kv{display:flex;justify-content:space-between;gap:12px;font-size:14px;line-height:1.5}
.kv .k{color:#475569}
.kv .v{text-align:right;font-weight:800;color:#0f172a}
.group{margin-top:6px;padding-top:6px;border-top:1px dashed var(--line2);font-size:12.5px;color:#51607a}

/* ===== FORM (scoped) ===== */
.iu-check .form-head{margin:0 0 10px}
.iu-check .form-head .t{font-weight:800;font-size:14px;color:#1f2937}


.iu-check .form-row{
  display:grid;gap:10px;
  grid-template-columns:1fr;
  grid-template-areas:
    "main"
    "ad1"
    "ad2"
    "btn";
}
@media (min-width:560px){
  .iu-check .form-row{
    grid-template-columns:1fr auto;
    grid-template-areas:
      "main btn"
      "ad1  ad1"
      "ad2  ad2";
  }
}
.field-main{grid-area:main}
#addon-serial{grid-area:ad1}
#addon-imei{grid-area:ad2}
.iu-check .cta{grid-area:btn}

.iu-check input.field{
  box-sizing:border-box;width:100%;height:64px;padding:0 16px;background:#fff;border:1px solid var(--line);border-radius:14px;
  outline:none;box-shadow:none;appearance:none;-webkit-appearance:none;
  font-size:clamp(18px,2.6vw,20px);line-height:1.2;color:var(--ink);letter-spacing:.2px;caret-color:var(--brand);font-family:inherit
}
.iu-check input.field::placeholder{color:#9aa7b6;font-size:.95em}
.iu-check input.field:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(102,121,220,.12);background:#fbfbff}
.iu-check .cta{
  height:60px;padding:0 22px;border-radius:14px;border:1px solid var(--brand);
  background:var(--brand);color:#fff;font-weight:800;font-size:16px;cursor:pointer;
  transition:background .12s ease,border-color .12s ease,transform .03s ease
}
.iu-check .cta:hover{background:var(--brand-700);border-color:var(--brand-700)}
.iu-check .cta:active{transform:translateY(1px)}
.status{min-height:16px;margin-top:6px;font-size:13px;color:#ef4444}


.addon{max-height:0;opacity:0;overflow:hidden;transition:max-height .25s ease,opacity .2s ease}
.addon.open{max-height:160px;opacity:1}
.addon .hint{font-size:12.5px;color:#64748b;margin-top:4px}
.detect{margin-top:6px;font-size:13px;color:#475569}

/* ===== SERVICES ===== */
.svc-head{display:flex;justify-content:space-between;align-items:center;margin:2px 0 8px}
.svc-head h2{margin:0;font-size:16px;letter-spacing:-.01em}
.svc-more{font-weight:800;font-size:13px;color:#334155;border-bottom:1px dashed #cbd5e1}

.svc-grid{display:grid;gap:8px;grid-template-columns:1fr}
@media (min-width:980px){.svc-grid{grid-template-columns:1fr 1fr}}

.svc{
  border:1px solid var(--line);border-radius:12px;background:#fff;padding:10px 12px;min-height:60px;box-shadow:0 6px 16px rgba(16,24,40,.05);
  transition:border-color .12s ease, background-color .12s ease, transform .06s ease;
  color:inherit;text-decoration:none;cursor:pointer;
  display:grid;gap:8px;
  grid-template-columns:auto 1fr auto;
  grid-template-areas:
    "ico title time"
    "ico title price";
  column-gap:12px; row-gap:4px; align-items:center;
}
.svc:hover{background:#f9fbff;border-color:#dbe2ff;transform:translateY(-1px)}
.svc:active{transform:translateY(0)}
.svc-ico{grid-area:ico;width:40px;height:40px;border-radius:10px;border:1px solid var(--line);background:#f6f8fb;display:grid;place-items:center;overflow:hidden}
.svc-ico img{width:100%;height:100%;object-fit:contain}
.svc-title{grid-area:title;min-width:0;font-weight:600;font-size:14px;line-height:1.25;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis}
.svc-title.is-long{font-size:13.5px}
.svc-title.is-very-long{font-size:12.5px;line-height:1.2;letter-spacing:-.1px}
.svc-time{grid-area:time;justify-self:end;text-align:right;font-size:12px;color:#53607b;display:flex;gap:6px;align-items:center}
.svc-time svg{opacity:.8}


.svc-price{
  grid-area:price;justify-self:end;align-self:end;font-weight:900;font-size:13px;
  color:#26318f;background:#eef2ff;padding:4px 8px;border-radius:10px;white-space:nowrap
}

.svc-price--mint{background:var(--price-mint-bg);color:var(--price-mint-ink)}
.svc-price--amber{background:var(--price-amber-bg);color:var(--price-amber-ink)}
.svc-price--slate{background:var(--price-slate-bg);color:var(--price-slate-ink)}

@media (max-width:479.98px){
  .svc{
    grid-template-columns:64px 1fr auto;
    grid-template-areas:
      "ico title title"
      "ico time  price";
    column-gap:10px; row-gap:6px; align-items:start;
  }
  .svc-ico{grid-row:1 / span 2;border-radius:12px}
  .svc-title{-webkit-line-clamp:2}
  @media (max-width:360px){.svc-title{-webkit-line-clamp:3;font-size:13.5px}}
  .svc-price{font-size:12.5px;padding:3px 6px}
}
@media (min-width:480px) and (max-width:979.98px){
  .svc-grid{grid-template-columns:1fr}
  .svc{grid-template-columns:36px 1fr auto;grid-template-areas:"ico title time" "ico title price"}
  .svc-ico{width:36px;height:36px;border-radius:10px}
}


.faq h2{font-size:18px;margin:0 0 10px}
.faq-box{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden;box-shadow:0 6px 16px rgba(16,24,40,.05)}
.faq-item{border-bottom:1px solid var(--line2)} .faq-item:last-child{border-bottom:0}
.faq-q{list-style:none;display:grid;grid-template-columns:1fr auto;align-items:center;gap:10px;padding:14px 14px;font-weight:800;font-size:15px;color:#0f172a;cursor:pointer;user-select:none}
.faq-q::-webkit-details-marker{display:none}
.faq-q:hover{background:#f9fbff}
.chev{width:18px;height:18px;opacity:.75;transition:transform .18s ease,opacity .18s ease}
details[open] .chev{transform:rotate(90deg);opacity:.95}
.faq-a{padding:0 14px 14px 14px;color:#475569;font-size:14px;line-height:1.7;border-left:3px solid transparent}
details[open] .faq-a{border-left-color:var(--brand)}
.faq-wrap{margin-bottom:18px}
.seo p{margin:0 0 10px;color:#475569;line-height:1.75}


#timer1{
  display:grid;
  place-items:center;      
  min-height:60px;         
  width:100%;
}
#timer1 .cta{
  width:100%;              
  justify-self:stretch;     
}


.loading{
  width:100%;
  display:grid;
  place-items:center;
  gap:8px;
  padding:6px 0;
}
.loading .spinner{
  width:28px;height:28px;border-radius:50%;
  border:3px solid #e5e7eb;                 
  border-top-color: var(--brand);        
  animation: iu-spin .8s linear infinite;
}
.loading .loading-txt{
  font-weight:800;font-size:13.5px;color:#334155;letter-spacing:.02em;
}
@keyframes iu-spin{to{transform:rotate(360deg)}}


.iu-check #timer1{
  display:block !important;
  width:100%;
  min-height:60px;
}
.iu-check #timer1 .cta{
  display:block !important; 
  width:100% !important;      
}


.iu-check #timer1.is-loading{
  display:flex !important;
  align-items:center;
  justify-content:center;
}
.iu-check #timer1 .loading{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 0;
}
.iu-check #timer1 .loading .spinner{
  width:28px;height:28px;border-radius:50%;
  border:3px solid #e5e7eb;border-top-color:var(--brand);
  animation: iu-spin .8s linear infinite;
}
.iu-check #timer1 .loading .loading-txt{
  font-weight:800;font-size:13.5px;color:#334155;letter-spacing:.02em;
}
@keyframes iu-spin{to{transform:rotate(360deg)}}

a.cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #4f5fca, #6679dc);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease-in-out;
}

a.cta:hover {
  background: linear-gradient(135deg, #6679dc, #4f5fca);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

a.cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.alert{
  --accent:#ef4444;          
  --bg: #fff8f8;
  --ink:#991b1b;

  display:block;
  width:100%;
  box-sizing:border-box;
  margin:10px 0;
  padding:12px 14px;
  background:var(--bg);
  color:var(--ink);
  border:1px solid rgba(0,0,0,.05);
  border-left:4px solid var(--accent);
  border-radius:12px;
  font-size:14px;
  line-height:1.55;
  box-shadow:0 6px 16px rgba(16,24,40,.05);
}
.alert strong{font-weight:800}
.alert--error{     font-weight: 600;
    margin-bottom: 18px;  
  --accent:#ef4444; --bg:#fff5f5; --ink:#991b1b;
  border-color:#f8d3d3; border-left-color:var(--accent);
}
.alert--warning{
  --accent:#f59e0b; --bg:#fff8e6; --ink:#7c4a03;
  border-color:#fde2b2; border-left-color:var(--accent);
}
.alert--success{
  --accent:#16a34a; --bg:#f0fdf4; --ink:#064e3b;
  border-color:#cdebd6; border-left-color:var(--accent);
}
.alert--info{
  --accent:#3b82f6; --bg:#f0f6ff; --ink:#0f2966;
  border-color:#cfe0ff; border-left-color:var(--accent);
}

/* В твоём блоке статуса – просто вставляем alert внутрь */
.status{min-height:auto;margin-top:10px;font-size:13.5px;}
.status .alert{margin:0}



.iuResCard_watermark {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 17px;
  opacity: 0.08;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  color: #000;
}


.iuResCard_model {
  font-size: clamp(16px, 3.5vw, 24px); 
  font-weight: 700;
  color: #1e2147;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;

 /* white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
.iuResCard_wrapper {
  background: white;
  border-radius: 20px;
  padding: 24px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-family: 'Poppins', sans-serif;
  color: #333;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
}
.iuResCard_img {
  max-width: 180px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display:block;        
  margin-inline:auto;  
}
.iuResCard_content {
  flex: 1;
  min-width: 240px;
}

.iuResCard_row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.iuResCard_label {
  font-weight: 500;
  font-size: 16px;
}
.iuResCard_value {
  font-weight: 600;
  font-size: 16px;
  
}
.iuResCard_value.red { color: red; }
.iuResCard_value.green { color: green; }
.iuResCard_value.blue { color: #2e3a87; }
.iuResCard_buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px; 
  margin-top: 24px;
}

.iuResCard_btn { 
 padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  box-sizing: border-box;
  }
.iuResCard_btn.remove {
  background: #4b7bec;
}
.iuResCard_btn.carrier {
  background: #a55eea;
}
.iuResCard_premiumNote {
  margin-top: 16px;
  background: #fef3c7; 
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.iuResCard_premiumNote b {
  color: #78350f;
}

.iuResCard_premiumNote .iuResCard_btn {
  display: inline-block;
  margin-top: 12px;
}

@media (max-width: 500px) {
  .iuResCard_buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .iuResCard_btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .iuResCard_wrapper {

    align-items: center;
    text-align: center;
  }
  .iuResCard_row {
    justify-content: space-between;
  }
  
}
.panel.iu-check{
  margin-top:14px;    
  margin-bottom:18px; 
}
@media (max-width:560px){
  .panel.iu-check{ margin-top:10px; margin-bottom:12px; }
}


.iu-check #imei.field-main{
  border-width:1px;
  border-color:var(--brand);
  background:linear-gradient(180deg,#fff 0%,#fbfbff 100%);
  box-shadow:
    inset 4px 0 0 var(--brand),         
    0 0 0 3px rgba(102,121,220,.12),      
    0 10px 24px rgba(16,24,40,.06);       
}

.iu-check #imei.field-main:focus{
  border-color:var(--brand-700);
  box-shadow:
    inset 4px 0 0 var(--brand-700),
    0 0 0 4px rgba(102,121,220,.18),
    0 12px 28px rgba(16,24,40,.08);
}

.iu-check #imei.field-main:placeholder-shown{
  animation: iu-breathe 1.6s ease-in-out 4;
}
@keyframes iu-breathe{
  0%   { box-shadow: inset 4px 0 0 var(--brand), 0 0 0 0 rgba(102,121,220,.00), 0 10px 24px rgba(16,24,40,.06); }
  50%  { box-shadow: inset 4px 0 0 var(--brand), 0 0 0 8px rgba(102,121,220,.12), 0 10px 24px rgba(16,24,40,.06); }
  100% { box-shadow: inset 4px 0 0 var(--brand), 0 0 0 0 rgba(102,121,220,.00), 0 10px 24px rgba(16,24,40,.06); }
}
.iu-check .form-row{
padding-left: 10px;
}
.is-invalid{
  border-color:#ef4444 !important;
  box-shadow:0 0 0 2px rgba(239,68,68,.25);
}
 .iu-actions{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:12px 0 16px; justify-content: center;}
  .iu-btnn{border:0;border-radius:10px;padding:10px 14px;background:#6679dc;color:#fff;
    font:600 14px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial;cursor:pointer;
    box-shadow:0 4px 10px rgba(102,121,220,.25)}
  .iu-btnn:active{transform:scale(.98)}

.scr-compact .iuResCard_model {
  font-size:14px;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
}
.scr-compact .iuResCard_label {font-size:12px   white-space: nowrap;
  font-size: clamp(9px, 1vw, 14px);}
.scr-compact .iuResCard_value {font-size:12px   white-space: nowrap;
  font-size: clamp(9px, 1vw, 14px);}
.scr-compact .iuResCard_row {padding:2px 0}
.scr-compact .iuResCard_img {max-width: 90px}
.scr-compact .iuResCard_wrapper {padding:8px 12px}
.iu-compact-toggle {
  display:flex;
  justify-content:flex-end;
  margin-bottom:8px;
}
.iu-compact-toggle .iu-btn {
  display:flex;
  align-items:center;
  gap:6px;
  border:0;
  border-radius:8px;
  padding:6px 12px;
  background:#6679dc;
  color:#fff;
  font:600 13px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  cursor:pointer;
  box-shadow:0 3px 8px rgba(102,121,220,.25);
}

.i u-compact-toggle{display:flex;justify-content:flex-end;margin-bottom:8px}


.iu-btnn-compact{
  display:inline-flex;align-items:center;gap:8px;
  border:0;border-radius:8px;padding:6px 12px;
  background:#6679dc;color:#fff;font:600 13px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  cursor:pointer;box-shadow:0 3px 8px rgba(102,121,220,.25)
}
.iu-btn-compact:active{transform:scale(.97)}


.iu-btnn-compact .iu-ico{
  width:16px;height:16px;background:currentColor;display:inline-block;
  -webkit-mask: var(--iu-ico) no-repeat center / 100% 100%;
          mask: var(--iu-ico) no-repeat center / 100% 100%;
}


.iu-btnn-compact .iu-ico{
  --iu-ico: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"%23000\" d=\"M4 6h16v2H4zM4 11h16v2H4zM4 16h16v2H4z\"/></svg>');
}
.iu-btnn.is-active,
.iu-btnn-compact.is-active{
  background:#4054ff;
  box-shadow:0 0 0 3px rgba(64,84,255,.25) inset, 0 3px 8px rgba(64,84,255,.25);
}