:root{
  --pcreg-bg:#f4efec;
  --pcreg-surface:#ffffff;
  --pcreg-surface-2:#f8fafc;
  --pcreg-text:#0f172a;
  --pcreg-text-soft:#475569;
  --pcreg-line:#e2e8f0;
  --pcreg-primary:#035fa6;
  --pcreg-primary-2:#268dcf;
  --pcreg-accent:#f9c734;
  --pcreg-success:#0f766e;
  --pcreg-shadow:0 20px 60px rgba(2,21,44,.10);
  --pcreg-shadow-soft:0 12px 30px rgba(2,21,44,.08);
  --pcreg-radius-xxl:32px;
  --pcreg-radius-xl:26px;
  --pcreg-radius-lg:20px;
  --pcreg-radius-md:16px;
  --pcreg-radius-sm:12px;
  --pcreg-container:1240px;
  --pcreg-topbar-h:78px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.pcreg-body{
  margin:0;
  color:var(--pcreg-text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(38,141,207,.11), transparent 28%),
    radial-gradient(circle at right bottom, rgba(249,199,52,.12), transparent 26%),
    var(--pcreg-bg);
}

body.pcreg-body img{
  max-width:100%;
  height:auto;
}

body.pcreg-body a{
  color:var(--pcreg-primary);
}

.pcreg-app{
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}

.pcreg-bg{
  position:fixed;
  border-radius:999px;
  filter:blur(70px);
  pointer-events:none;
  z-index:0;
  opacity:.58;
}

.pcreg-bg--1{
  width:300px;
  height:300px;
  left:-80px;
  top:120px;
  background:rgba(38,141,207,.18);
}

.pcreg-bg--2{
  width:340px;
  height:340px;
  right:-110px;
  top:180px;
  background:rgba(249,199,52,.18);
}

.pcreg-bg--3{
  width:220px;
  height:220px;
  right:20%;
  bottom:40px;
  background:rgba(3,95,166,.12);
}

.pcreg-topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(244,239,236,.84);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.5);
}

.pcreg-topbar__inner{
  max-width:var(--pcreg-container);
  min-height:var(--pcreg-topbar-h);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.pcreg-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--pcreg-text);
  min-width:0;
}

.pcreg-brand__logo{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:6px;
  box-shadow:var(--pcreg-shadow-soft);
}

.pcreg-brand__text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.pcreg-brand__name{
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
  color:var(--pcreg-primary);
}

.pcreg-brand__sub{
  font-size:12px;
  color:var(--pcreg-text-soft);
}

.pcreg-topbar__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.pcreg-main{
  position:relative;
  z-index:1;
}

.pcreg-shell{
  max-width:var(--pcreg-container);
  margin:0 auto;
  padding:28px 18px 36px;
}

.pcreg-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:22px;
  align-items:stretch;
  margin-bottom:22px;
}

.pcreg-hero__content{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  border:1px solid rgba(255,255,255,.85);
  box-shadow:var(--pcreg-shadow);
  border-radius:var(--pcreg-radius-xxl);
  padding:32px;
  position:relative;
  overflow:hidden;
}

.pcreg-hero__content::after{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(38,141,207,.14), transparent 70%);
}

.pcreg-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(3,95,166,.08);
  border:1px solid rgba(3,95,166,.10);
  color:var(--pcreg-primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:14px;
}

.pcreg-title{
  margin:0 0 10px;
  font-size:clamp(34px,4vw,52px);
  line-height:1.02;
  letter-spacing:-.03em;
  color:#0b1728;
}

.pcreg-subtitle{
  margin:0;
  max-width:740px;
  color:var(--pcreg-text-soft);
  font-size:16px;
  line-height:1.8;
}

.pcreg-mini-stats{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.pcreg-mini-stat{
  background:rgba(248,250,252,.96);
  border:1px solid var(--pcreg-line);
  border-radius:18px;
  padding:15px 16px;
}

.pcreg-mini-stat__label{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  color:#64748b;
}

.pcreg-mini-stat__value{
  display:block;
  font-size:14px;
  color:#0f172a;
  font-weight:700;
  line-height:1.45;
}

.pcreg-support-card{
  height:100%;
  background:linear-gradient(180deg, #035fa6 0%, #0a74c8 100%);
  color:#fff;
  border-radius:var(--pcreg-radius-xxl);
  box-shadow:var(--pcreg-shadow);
  padding:26px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.pcreg-support-card__icon{
  width:50px;
  height:50px;
  flex:0 0 50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.16);
  font-size:22px;
  font-weight:900;
}

.pcreg-support-card__body h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.1;
}

.pcreg-benefits{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.pcreg-benefits li{
  position:relative;
  padding-left:26px;
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.7;
}

.pcreg-benefits li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:12px;
  height:12px;
  border-radius:999px;
  background:var(--pcreg-accent);
  box-shadow:0 0 0 4px rgba(249,199,52,.18);
}

.pcreg-divider{
  height:1px;
  border:none;
  background:rgba(255,255,255,.18);
  margin:18px 0;
}

.pcreg-muted{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:14px;
  line-height:1.75;
}

.pcreg-grid{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(320px,.85fr);
  gap:22px;
  align-items:start;
}

.pcreg-sidecol{
  display:grid;
  gap:18px;
}

.pcreg-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.88);
  border-radius:28px;
  box-shadow:var(--pcreg-shadow);
  overflow:hidden;
}

.pcreg-card__inner{
  padding:28px;
}

.pcreg-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.pcreg-card__eyebrow{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pcreg-card__title{
  margin:0;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--pcreg-primary);
}

.pcreg-card__title--small{
  font-size:22px;
}

.pcreg-security-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid var(--pcreg-line);
  color:#334155;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.pcreg-shortcode-wrap{
  width:100%;
  min-width:0;
}

.pcreg-shortcode-wrap *{
  max-width:100%;
}

.pcreg-shortcode-wrap input,
.pcreg-shortcode-wrap select,
.pcreg-shortcode-wrap textarea,
.pcreg-shortcode-wrap button{
  max-width:100%;
}

.pcreg-shortcode-wrap input[type="text"],
.pcreg-shortcode-wrap input[type="email"],
.pcreg-shortcode-wrap input[type="password"],
.pcreg-shortcode-wrap input[type="tel"],
.pcreg-shortcode-wrap input[type="number"],
.pcreg-shortcode-wrap select,
.pcreg-shortcode-wrap textarea{
  width:100%;
  min-height:54px;
  border-radius:16px;
  border:1px solid #d7e1ec;
  background:#fbfdff;
  color:#0f172a;
  padding:0 16px;
  font-size:15px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.pcreg-shortcode-wrap textarea{
  min-height:120px;
  padding-top:14px;
  padding-bottom:14px;
}

.pcreg-shortcode-wrap input:focus,
.pcreg-shortcode-wrap select:focus,
.pcreg-shortcode-wrap textarea:focus{
  border-color:#7bb8e3;
  background:#fff;
  box-shadow:0 0 0 4px rgba(38,141,207,.12);
}

.pcreg-shortcode-wrap button,
.pcreg-shortcode-wrap input[type="submit"],
.pcreg-shortcode-wrap .button,
.pcreg-shortcode-wrap .btn,
.pcreg-shortcode-wrap .poptcar-btn,
.pcreg-shortcode-wrap .poptcar-btn-primary{
  appearance:none;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  text-decoration:none !important;
  cursor:pointer;
  background:linear-gradient(180deg, var(--pcreg-accent), #efb800);
  color:#111827;
  box-shadow:0 16px 30px rgba(249,199,52,.28);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.pcreg-shortcode-wrap button:hover,
.pcreg-shortcode-wrap input[type="submit"]:hover,
.pcreg-shortcode-wrap .button:hover,
.pcreg-shortcode-wrap .btn:hover,
.pcreg-shortcode-wrap .poptcar-btn:hover,
.pcreg-shortcode-wrap .poptcar-btn-primary:hover{
  transform:translateY(-1px);
}

.pcreg-shortcode-wrap .poptcar-auth-logo img,
.pcreg-shortcode-wrap .poptcar-brand-logo,
.pcreg-shortcode-wrap img{
  max-width:100%;
  height:auto;
}

.pcreg-help{
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(38,141,207,.08);
  border:1px solid rgba(38,141,207,.14);
}

.pcreg-help__item{
  font-size:14px;
  line-height:1.6;
  color:#334155;
}

.pcreg-feature-list{
  display:grid;
  gap:14px;
}

.pcreg-feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:18px;
  border-radius:20px;
  border:1px solid var(--pcreg-line);
  background:#f8fafc;
}

.pcreg-feature__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(180deg, var(--pcreg-primary-2), var(--pcreg-primary));
  color:#fff;
  font-weight:900;
  box-shadow:0 10px 22px rgba(38,141,207,.22);
}

.pcreg-feature__body h3{
  margin:1px 0 6px;
  font-size:16px;
  line-height:1.2;
  color:#0f172a;
}

.pcreg-feature__body p{
  margin:0;
  color:#475569;
  font-size:14px;
  line-height:1.7;
}

.pcreg-cta-list{
  display:grid;
  gap:10px;
}

.pcreg-cta{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid var(--pcreg-line);
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pcreg-cta::after{
  content:"→";
  color:var(--pcreg-primary);
  font-weight:900;
}

.pcreg-cta:hover{
  transform:translateY(-1px);
  border-color:#cfe0ef;
  box-shadow:var(--pcreg-shadow-soft);
}

.pcreg-btn{
  appearance:none;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  text-decoration:none !important;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.pcreg-btn:hover{
  transform:translateY(-1px);
}

.pcreg-btn--ghost{
  background:rgba(255,255,255,.65);
  color:var(--pcreg-primary);
  border:1px solid rgba(3,95,166,.10);
}

.pcreg-btn--light{
  background:linear-gradient(180deg, var(--pcreg-primary-2), var(--pcreg-primary));
  color:#fff;
  box-shadow:0 16px 30px rgba(38,141,207,.22);
}

.pcreg-footer{
  text-align:center;
  padding:20px 0 0;
  color:#64748b;
  font-size:13px;
}

/* TABLET */
@media (max-width: 1024px){
  .pcreg-hero{
    grid-template-columns:1fr;
  }

  .pcreg-grid{
    grid-template-columns:1fr;
  }

  .pcreg-mini-stats{
    grid-template-columns:1fr;
  }
}

/* MOBILE */
@media (max-width: 767px){
  :root{
    --pcreg-topbar-h:70px;
  }

  .pcreg-topbar__inner{
    padding:12px 14px;
  }

  .pcreg-topbar__actions{
    display:none;
  }

  .pcreg-shell{
    padding:16px 14px 24px;
  }

  .pcreg-hero__content,
  .pcreg-support-card,
  .pcreg-card{
    border-radius:24px;
  }

  .pcreg-hero__content,
  .pcreg-support-card,
  .pcreg-card__inner{
    padding:20px 18px;
  }

  .pcreg-title{
    font-size:32px;
  }

  .pcreg-subtitle{
    font-size:15px;
    line-height:1.72;
  }

  .pcreg-card__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .pcreg-card__title{
    font-size:24px;
  }
}

/* SMALL MOBILE */
@media (max-width: 420px){
  .pcreg-brand__sub{
    display:none;
  }

  .pcreg-title{
    font-size:28px;
  }

  .pcreg-support-card{
    gap:12px;
  }

  .pcreg-support-card__icon{
    width:44px;
    height:44px;
    flex-basis:44px;
    border-radius:14px;
  }
}