:root{
  --pc-bg:#edf4ff;
  --pc-bg-2:#e6f0ff;
  --pc-white:#ffffff;

  --pc-navy:#0a1f57;
  --pc-navy-2:#11317b;
  --pc-navy-3:#163b90;
  --pc-blue-soft:#dce9ff;
  --pc-blue-soft-2:#f3f8ff;
  --pc-blue-border:#bfd4ff;

  --pc-text:#0d1c43;
  --pc-muted:#5a6f9d;

  --pc-green:#22c55e;
  --pc-green-dark:#16a34a;

  --pc-shadow:0 24px 70px rgba(17,49,123,0.10);
  --pc-shadow-soft:0 10px 28px rgba(17,49,123,0.08);

  --pc-border:1px solid rgba(17,49,123,0.10);
  --pc-border-strong:1px solid rgba(17,49,123,0.16);

  --pc-radius-xl:34px;
  --pc-radius-lg:26px;
  --pc-radius-md:20px;
  --pc-radius-sm:16px;

  --pc-max:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(17,49,123,0.05), transparent 22%),
    linear-gradient(180deg, #f6f9ff 0%, var(--pc-bg) 100%);
  color:var(--pc-text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(100% - 32px, var(--pc-max));
  margin:0 auto;
}

.page-wrap{
  padding-top:18px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(246,249,255,0.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(17,49,123,0.08);
}

.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand-logo{
  height:52px;
  width:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.main-nav a{
  font-size:15px;
  font-weight:600;
  color:var(--pc-text);
  opacity:.82;
}

.main-nav a:hover,
.main-nav a.active{
  opacity:1;
  color:var(--pc-navy-2);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}

.mobile-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--pc-shadow-soft);
  padding:10px;
  cursor:pointer;
}

.mobile-menu-toggle span{
  display:block;
  height:2px;
  background:var(--pc-navy);
  margin:6px 0;
  border-radius:999px;
}

.mobile-nav{
  display:none;
  padding:0 16px 16px;
  background:rgba(246,249,255,0.96);
  border-top:1px solid rgba(17,49,123,0.08);
}

.mobile-nav a{
  display:block;
  padding:12px 14px;
  margin-top:8px;
  border-radius:14px;
  background:#fff;
  font-weight:600;
  border:var(--pc-border);
}

.mobile-nav-primary{
  background:var(--pc-green)!important;
  color:#fff!important;
  border:none!important;
}

.mobile-nav-outline{
  background:#fff!important;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-sm{
  min-height:44px;
  padding:0 18px;
}

.btn-primary{
  background:var(--pc-green);
  color:#fff;
  box-shadow:0 12px 28px rgba(34,197,94,0.24);
}

.btn-primary:hover{
  background:var(--pc-green-dark);
  transform:translateY(-1px);
}

.btn-outline{
  background:#fff;
  border:var(--pc-border-strong);
  color:var(--pc-text);
}

.btn-outline:hover{
  border-color:rgba(17,49,123,0.32);
}

.btn-ghost{
  background:rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.16);
}

.btn-ghost:hover{
  background:rgba(255,255,255,0.16);
}

.btn-ghost-light{
  background:#fff;
  color:var(--pc-text);
  border:1px solid rgba(255,255,255,0.14);
}

.hero-v3-wrap{
  padding:26px 0 22px;
}

.hero-v3-shell{
  background:
    radial-gradient(circle at 85% 15%, rgba(34,197,94,0.18), transparent 16%),
    radial-gradient(circle at 15% 0%, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(135deg, #0b1f5d 0%, #14388d 100%);
  border-radius:38px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 30px 90px rgba(10,31,87,0.22);
  padding:42px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.hero-v3-copy{
  position:relative;
  z-index:2;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.12);
  color:#dff0ff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:18px;
}

.hero-v3-copy h1{
  font-size:66px;
  line-height:1.01;
  letter-spacing:-2.2px;
  max-width:660px;
  margin-bottom:18px;
}

.hero-lead{
  font-size:18px;
  line-height:1.8;
  max-width:620px;
  color:rgba(255,255,255,0.78);
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.proof-chip{
  padding:11px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
  color:#f3f8ff;
  font-size:14px;
  font-weight:700;
}

.hero-v3-dashboard{
  display:flex;
  align-items:stretch;
}

.dashboard-shell{
  width:100%;
  background:rgba(7,20,59,0.42);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:30px;
  padding:24px;
  backdrop-filter:blur(10px);
}

.dashboard-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.dash-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:rgba(255,255,255,0.62);
  margin-bottom:6px;
}

.dashboard-head h3{
  font-size:34px;
  line-height:1.08;
}

.dash-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.dashboard-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.dash-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:22px;
  padding:18px;
}

.dash-card-featured{
  background:linear-gradient(135deg, rgba(34,197,94,0.16), rgba(255,255,255,0.09));
}

.dash-card-wide{
  grid-column:span 2;
}

.dash-label{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:rgba(255,255,255,0.62);
  margin-bottom:8px;
}

.dash-card h4{
  font-size:24px;
  line-height:1.1;
  margin-bottom:6px;
}

.dash-card p{
  color:rgba(255,255,255,0.74);
  font-size:14px;
}

.dash-list{
  list-style:none;
  display:grid;
  gap:8px;
}

.dash-list li{
  position:relative;
  padding-left:16px;
  font-size:14px;
  color:rgba(255,255,255,0.82);
}

.dash-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#8dffb3;
  font-weight:800;
}

.dashboard-foot{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.62);
  font-size:14px;
}

.trust-strip-box{
  margin-top:18px;
}

.trust-strip{
  background:#f8fbff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:24px;
  padding:16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.trust-strip span{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:var(--pc-border);
  color:var(--pc-navy-2);
  font-size:14px;
  font-weight:800;
}

.section-v3{
  padding:14px 0;
}

.section-v3-compact{
  padding-bottom:0;
}

.panel{
  border-radius:34px;
  padding:34px;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow);
}

.panel-light{
  background:linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.panel-blue-soft{
  background:linear-gradient(180deg, #ebf3ff 0%, #dfeaff 100%);
}

.panel-plan{
  background:linear-gradient(180deg, #f4fbf8 0%, #e8f8ef 100%);
}

.panel-process{
  background:linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.panel-dark{
  background:linear-gradient(135deg, #0b1f5d 0%, #14388d 100%);
  border:1px solid rgba(255,255,255,0.08);
  color:#fff;
  box-shadow:0 28px 84px rgba(10,31,87,0.18);
}

.panel-trust{
  background:linear-gradient(180deg, #edf4ff 0%, #e1ecff 100%);
}

.panel-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 28px;
}

.panel-head-left{
  text-align:left;
  max-width:760px;
  margin:0 0 28px;
}

.section-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--pc-green-dark);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-weight:900;
}

.section-kicker-dark{
  color:#9cffbf;
}

.panel-head h2,
.split-copy h2,
.report-copy h2,
.final-cta-box h2{
  font-size:46px;
  line-height:1.08;
  letter-spacing:-1.3px;
  color:var(--pc-navy);
  margin-bottom:12px;
}

.panel-dark h2,
.report-copy h2,
.final-cta-box h2{
  color:#fff;
}

.panel-head p,
.split-copy p,
.report-copy p,
.final-cta-box p{
  font-size:17px;
  line-height:1.75;
  color:var(--pc-muted);
}

.panel-dark p,
.report-copy p,
.final-cta-box p{
  color:rgba(255,255,255,0.76);
}

.risk-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.info-box{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:26px;
  padding:24px;
}

.info-box-featured{
  background:linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  transform:translateY(-6px);
}

.info-badge{
  width:48px;
  height:48px;
  border-radius:16px;
  background:#e6efff;
  border:1px solid rgba(17,49,123,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--pc-navy-2);
  font-size:15px;
  font-weight:900;
  margin-bottom:16px;
}

.info-box h3{
  font-size:28px;
  line-height:1.12;
  margin-bottom:10px;
  color:var(--pc-navy);
}

.info-box p{
  color:var(--pc-muted);
  font-size:15px;
}

.split-panel{
  display:grid;
  grid-template-columns:.96fr 1.04fr;
  gap:22px;
  align-items:center;
}

.feature-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:20px;
}

.feature-list li{
  position:relative;
  padding-left:24px;
  font-weight:700;
  color:var(--pc-text);
}

.feature-list li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--pc-green);
  position:absolute;
  left:0;
  top:9px;
  box-shadow:0 0 0 6px rgba(34,197,94,0.12);
}

.feature-list-dark li{
  color:#fff;
}

.stack-boxes{
  display:grid;
  gap:14px;
}

.stack-card{
  background:rgba(255,255,255,0.82);
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:22px;
  padding:22px;
}

.stack-tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  background:#edf4ff;
  color:var(--pc-navy-2);
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}

.stack-card h3{
  font-size:26px;
  line-height:1.12;
  margin-bottom:8px;
  color:var(--pc-navy);
}

.stack-card p{
  color:var(--pc-muted);
  font-size:15px;
}

.plans-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.plan-box{
  background:#fff;
  border:var(--pc-border-strong);
  border-radius:28px;
  box-shadow:var(--pc-shadow-soft);
  padding:26px;
}

.plan-box-featured{
  background:linear-gradient(180deg, #ffffff 0%, #f0fff4 100%);
  border:1px solid rgba(34,197,94,0.26);
  transform:translateY(-6px);
}

.plan-top{
  margin-bottom:14px;
}

.plan-pill{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#edf4ff;
  color:var(--pc-navy-2);
  font-size:12px;
  font-weight:900;
}

.plan-pill-green{
  background:rgba(34,197,94,0.14);
  color:var(--pc-green-dark);
}

.plan-box h3{
  font-size:38px;
  line-height:1.04;
  margin-bottom:12px;
  color:var(--pc-navy);
}

.plan-copy{
  font-size:16px;
  color:var(--pc-muted);
  margin-bottom:16px;
}

.plan-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin-bottom:20px;
}

.plan-list li{
  position:relative;
  padding-left:18px;
  color:var(--pc-text);
  font-size:15px;
}

.plan-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--pc-green-dark);
  font-weight:900;
}

.plan-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}

.plan-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:#f7fbff;
  border:var(--pc-border);
  color:var(--pc-navy-2);
  font-size:12px;
  font-weight:800;
}

.process-wrap{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.process-line{
  position:absolute;
  left:6%;
  right:6%;
  top:34px;
  height:2px;
  background:linear-gradient(90deg, #ccddff 0%, #b7ffcc 100%);
  z-index:0;
}

.process-card{
  position:relative;
  z-index:1;
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:24px;
  padding:22px;
}

.process-no{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--pc-navy-2), var(--pc-navy-3));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:16px;
  box-shadow:0 16px 32px rgba(17,49,123,0.18);
}

.process-card h3{
  font-size:24px;
  line-height:1.12;
  margin-bottom:10px;
  color:var(--pc-navy);
}

.process-card p{
  font-size:14px;
  color:var(--pc-muted);
}

.report-grid{
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:24px;
  align-items:center;
}

.report-ui{
  display:flex;
  justify-content:center;
}

.report-card-large{
  width:100%;
  max-width:520px;
  background:#f8fbff;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:30px;
  padding:22px;
  box-shadow:0 24px 60px rgba(6,18,51,0.20);
  color:var(--pc-text);
}

.report-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}

.report-mini-kicker{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--pc-muted);
  margin-bottom:6px;
}

.report-card-head h3{
  font-size:28px;
  line-height:1.08;
  color:var(--pc-navy);
}

.report-status{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 11px;
  border-radius:999px;
  background:rgba(34,197,94,0.14);
  color:var(--pc-green-dark);
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.report-block{
  background:#fff;
  border:var(--pc-border-strong);
  border-radius:20px;
  padding:18px;
  margin-bottom:14px;
}

.report-block-label{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--pc-muted);
  margin-bottom:8px;
}

.report-block h4{
  font-size:22px;
  line-height:1.12;
  margin-bottom:6px;
  color:var(--pc-navy);
}

.report-block p{
  color:var(--pc-muted);
  font-size:14px;
}

.report-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:14px;
}

.report-mini-box{
  background:#fff;
  border:var(--pc-border-strong);
  border-radius:20px;
  padding:18px;
}

.report-mini-box strong{
  font-size:22px;
  color:var(--pc-navy);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:24px;
  padding:22px;
}

.trust-card h3{
  font-size:22px;
  line-height:1.12;
  margin-bottom:10px;
  color:var(--pc-navy);
}

.trust-card p{
  color:var(--pc-muted);
  font-size:14px;
}

.final-cta-box{
  background:linear-gradient(135deg, #0b1f5d 0%, #14388d 100%);
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 24px 70px rgba(10,31,87,0.20);
  padding:30px 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#fff;
}

.site-footer{
  margin-top:28px;
  padding:0 0 22px;
}

.footer-shell{
  background:linear-gradient(180deg, #081945 0%, #0c2362 100%);
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 24px 70px rgba(10,31,87,0.18);
  color:#fff;
  padding:34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:24px;
}

.footer-logo-wrap{
  display:inline-flex;
  padding:8px 10px;
  background:#fff;
  border-radius:14px;
  margin-bottom:14px;
}

.footer-logo{
  height:34px;
  width:auto;
}

.footer-text{
  max-width:360px;
  color:rgba(255,255,255,0.74);
  font-size:15px;
}

.footer-heading{
  font-size:17px;
  color:#fff;
  margin-bottom:12px;
}

.footer-links{
  list-style:none;
  display:grid;
  gap:10px;
}

.footer-links a{
  color:rgba(255,255,255,0.76);
  font-size:14px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,0.62);
  font-size:13px;
}

@media (max-width: 1180px){
  .hero-v3-shell,
  .split-panel,
  .report-grid{
    grid-template-columns:1fr;
  }

  .risk-grid,
  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-wrap{
    grid-template-columns:repeat(2,1fr);
  }

  .process-line{
    display:none;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-v3-copy h1{
    font-size:52px;
  }
}

@media (max-width: 820px){
  .main-nav,
  .header-cta{
    display:none;
  }

  .mobile-menu-toggle{
    display:block;
  }

  .mobile-nav.show{
    display:block;
  }

  .page-wrap{
    padding-top:10px;
  }

  .hero-v3-shell,
  .panel,
  .footer-shell{
    padding:22px;
    border-radius:26px;
  }

  .hero-v3-copy h1{
    font-size:40px;
    letter-spacing:-1px;
  }

  .hero-lead,
  .panel-head p,
  .split-copy p,
  .report-copy p,
  .final-cta-box p{
    font-size:15px;
    line-height:1.7;
  }

  .dashboard-grid,
  .risk-grid,
  .plans-grid,
  .process-wrap,
  .report-mini-grid,
  .trust-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .dash-card-wide{
    grid-column:span 1;
  }

  .panel-head h2,
  .split-copy h2,
  .report-copy h2,
  .final-cta-box h2{
    font-size:32px;
    letter-spacing:-.8px;
  }

  .plan-box h3{
    font-size:30px;
  }

  .dashboard-head h3{
    font-size:28px;
  }

  .final-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* ========= MOBILE FIX PACK V4 ========= */

html, body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  -webkit-text-size-adjust:100%;
}

img{
  max-width:100%;
  height:auto;
}

@media (max-width: 820px){

  .main-nav,
  .header-cta{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:block !important;
  }

  .header-inner{
    min-height:72px;
    gap:12px;
  }

  .brand-logo{
    height:38px;
    width:auto;
  }

  .container{
    width:min(100% - 20px, var(--pc-max));
  }

  .page-wrap{
    padding-top:8px;
  }

  .hero-v3-wrap{
    padding:10px 0 12px;
  }

  .hero-v3-shell{
    grid-template-columns:1fr !important;
    gap:18px;
    padding:18px;
    border-radius:22px;
  }

  .eyebrow{
    min-height:34px;
    padding:0 12px;
    font-size:11px;
    margin-bottom:14px;
  }

  .hero-v3-copy h1{
    font-size:34px;
    line-height:1.05;
    letter-spacing:-1px;
    margin-bottom:14px;
  }

  .hero-lead{
    font-size:14px;
    line-height:1.65;
    margin-bottom:18px;
  }

  .hero-actions{
    gap:10px;
  }

  .hero-actions .btn{
    min-height:42px;
    padding:0 16px;
    font-size:13px;
  }

  .hero-proof-row{
    gap:8px;
    margin-top:16px;
  }

  .proof-chip{
    font-size:11px;
    padding:8px 10px;
  }

  .dashboard-shell{
    padding:16px;
    border-radius:22px;
  }

  .dashboard-head{
    margin-bottom:14px;
  }

  .dashboard-head h3{
    font-size:24px;
  }

  .dash-badge{
    min-height:28px;
    padding:0 10px;
    font-size:10px;
  }

  .dashboard-grid{
    grid-template-columns:1fr !important;
    gap:10px;
  }

  .dash-card,
  .dash-card-wide{
    grid-column:span 1 !important;
    padding:14px;
    border-radius:16px;
  }

  .dash-card h4{
    font-size:18px;
  }

  .dash-card p,
  .dash-list li,
  .dashboard-foot{
    font-size:12px;
    line-height:1.55;
  }

  .trust-strip-box{
    margin-top:12px;
  }

  .trust-strip{
    padding:10px;
    gap:8px;
    border-radius:18px;
  }

  .trust-strip span{
    font-size:11px;
    padding:8px 10px;
  }

  .section-v3{
    padding:10px 0;
  }

  .panel,
  .footer-shell{
    padding:18px;
    border-radius:22px;
  }

  .panel-head,
  .panel-head-left{
    margin-bottom:18px;
  }

  .panel-head h2,
  .split-copy h2,
  .report-copy h2,
  .final-cta-box h2{
    font-size:30px;
    line-height:1.08;
    letter-spacing:-0.8px;
    margin-bottom:10px;
  }

  .panel-head p,
  .split-copy p,
  .report-copy p,
  .final-cta-box p{
    font-size:14px;
    line-height:1.65;
  }

  .risk-grid,
  .split-panel,
  .plans-grid,
  .process-wrap,
  .report-grid,
  .report-mini-grid,
  .trust-grid,
  .footer-grid{
    grid-template-columns:1fr !important;
    gap:12px;
  }

  .info-box,
  .stack-card,
  .plan-box,
  .process-card,
  .trust-card,
  .report-card-large{
    padding:16px;
    border-radius:18px;
  }

  .info-box-featured,
  .plan-box-featured{
    transform:none;
  }

  .info-badge,
  .process-no{
    width:42px;
    height:42px;
    border-radius:12px;
    font-size:16px;
    margin-bottom:12px;
  }

  .info-box h3,
  .stack-card h3,
  .process-card h3,
  .trust-card h3{
    font-size:20px;
    line-height:1.15;
    margin-bottom:8px;
  }

  .info-box p,
  .stack-card p,
  .process-card p,
  .trust-card p{
    font-size:13px;
    line-height:1.6;
  }

  .feature-list{
    gap:10px;
    margin-top:16px;
  }

  .feature-list li{
    font-size:13px;
    line-height:1.55;
    padding-left:20px;
  }

  .feature-list li::before{
    width:8px;
    height:8px;
    top:7px;
  }

  .plan-box h3{
    font-size:28px;
  }

  .plan-copy{
    font-size:14px;
    line-height:1.6;
    margin-bottom:14px;
  }

  .plan-list{
    gap:8px;
    margin-bottom:16px;
  }

  .plan-list li{
    font-size:13px;
    line-height:1.55;
  }

  .plan-meta{
    gap:8px;
    margin-bottom:16px;
  }

  .plan-meta span,
  .plan-pill{
    font-size:10px;
    padding:7px 9px;
  }

  .process-line{
    display:none !important;
  }

  .report-card-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .report-card-head h3{
    font-size:22px;
  }

  .report-status{
    font-size:10px;
    padding:0 9px;
    min-height:28px;
  }

  .report-block,
  .report-mini-box{
    padding:14px;
    border-radius:16px;
  }

  .report-block h4,
  .report-mini-box strong{
    font-size:18px;
  }

  .report-block p{
    font-size:12px;
    line-height:1.55;
  }

  .final-cta-box{
    padding:20px;
    border-radius:22px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .final-cta-box .hero-actions{
    width:100%;
  }

  .final-cta-box .hero-actions .btn{
    width:100%;
  }

  .footer-logo{
    height:28px;
  }

  .footer-text,
  .footer-links a{
    font-size:13px;
  }

  .footer-heading{
    font-size:15px;
    margin-bottom:10px;
  }

  .footer-bottom{
    font-size:11px;
    line-height:1.5;
    margin-top:18px;
    padding-top:14px;
  }
}
/* ===== SERVICES / INNER PAGES ===== */

.inner-hero-wrap{
  padding:26px 0 14px;
}

.inner-hero-shell{
  background:linear-gradient(135deg, #eef5ff 0%, #dfeaff 100%);
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow);
  border-radius:34px;
  padding:34px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
  align-items:center;
}

.inner-hero-shell-featured{
  background:linear-gradient(135deg, #eefaf2 0%, #dff3e7 100%);
}

.inner-hero-copy h1{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-1.5px;
  color:var(--pc-navy);
  margin-bottom:14px;
  max-width:760px;
}

.inner-hero-copy p{
  font-size:17px;
  line-height:1.75;
  color:var(--pc-muted);
  max-width:680px;
  margin-bottom:22px;
}

.inner-hero-sidecard{
  display:grid;
  gap:14px;
}

.side-stat-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:26px;
  padding:22px;
}

.side-stat-card-featured{
  background:linear-gradient(180deg, #ffffff 0%, #f4fff7 100%);
  border:1px solid rgba(34,197,94,0.24);
}

.side-stat-label{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--pc-muted);
  margin-bottom:8px;
}

.side-stat-card strong{
  display:block;
  font-size:28px;
  line-height:1.12;
  color:var(--pc-navy);
  margin-bottom:8px;
}

.side-stat-card p{
  font-size:14px;
  color:var(--pc-muted);
}

.side-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.side-mini-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:22px;
  padding:18px;
}

.side-mini-card span{
  display:block;
  font-size:12px;
  color:var(--pc-muted);
  margin-bottom:6px;
}

.side-mini-card strong{
  display:block;
  font-size:20px;
  line-height:1.1;
  color:var(--pc-navy);
}

.service-card-actions{
  margin-top:6px;
}

.decision-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.decision-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:26px;
  padding:24px;
}

.decision-card-featured{
  background:linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
}

.decision-card h3{
  font-size:28px;
  line-height:1.12;
  color:var(--pc-navy);
  margin-bottom:14px;
}

.decision-list{
  list-style:none;
  display:grid;
  gap:10px;
}

.decision-list li{
  position:relative;
  padding-left:18px;
  font-size:15px;
  line-height:1.6;
  color:var(--pc-text);
}

.decision-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--pc-green-dark);
  font-weight:900;
}

.common-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.common-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:24px;
  padding:22px;
}

.common-card h3{
  font-size:24px;
  line-height:1.12;
  color:var(--pc-navy);
  margin-bottom:10px;
}

.common-card p{
  font-size:15px;
  color:var(--pc-muted);
}

.service-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.service-detail-card{
  background:#fff;
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  border-radius:24px;
  padding:22px;
}

.service-detail-card h3{
  font-size:24px;
  line-height:1.12;
  color:var(--pc-navy);
  margin-bottom:10px;
}

.service-detail-card p{
  font-size:15px;
  color:var(--pc-muted);
}

@media (max-width: 1180px){
  .inner-hero-shell,
  .decision-grid,
  .common-grid,
  .service-detail-grid{
    grid-template-columns:1fr;
  }

  .side-stat-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 820px){
  .inner-hero-wrap{
    padding:14px 0 10px;
  }

  .inner-hero-shell{
    padding:20px;
    border-radius:24px;
    grid-template-columns:1fr;
    gap:16px;
  }

  .inner-hero-copy h1{
    font-size:34px;
    line-height:1.08;
    letter-spacing:-1px;
    margin-bottom:10px;
  }

  .inner-hero-copy p{
    font-size:14px;
    line-height:1.65;
    margin-bottom:18px;
  }

  .side-stat-card,
  .side-mini-card,
  .decision-card,
  .common-card,
  .service-detail-card{
    padding:16px;
    border-radius:18px;
  }

  .side-stat-card strong{
    font-size:22px;
  }

  .side-mini-card strong{
    font-size:17px;
  }

  .decision-card h3,
  .common-card h3,
  .service-detail-card h3{
    font-size:20px;
    margin-bottom:8px;
  }

  .decision-list li,
  .common-card p,
  .service-detail-card p{
    font-size:13px;
    line-height:1.6;
  }

  .side-stat-grid{
    grid-template-columns:1fr;
  }
}
/* ===== PRICING PAGE ===== */

.price-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 18px;
  border-radius:18px;
  background:linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
  border:var(--pc-border-strong);
  box-shadow:var(--pc-shadow-soft);
  color:var(--pc-navy);
  font-size:28px;
  font-weight:900;
  margin:0 0 18px;
}

@media (max-width: 820px){
  .price-tag{
    min-height:48px;
    padding:0 14px;
    border-radius:14px;
    font-size:22px;
    margin-bottom:14px;
  }
}
/* ===== PREMIUM PRICING CARD HIGHLIGHT ===== */

.plan-box-premium{
  position:relative;
  overflow:visible;
  background:
    radial-gradient(circle at top right, rgba(255,214,102,0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4fff7 100%);
  border:2px solid rgba(22,163,74,0.42);
  box-shadow:
    0 20px 50px rgba(17,49,123,0.10),
    0 0 0 6px rgba(34,197,94,0.06);
  transform:translateY(-12px);
}

.plan-box-premium .plan-pill-green{
  background:rgba(34,197,94,0.16);
  color:var(--pc-green-dark);
}

.plan-ribbon{
  position:absolute;
  top:-14px;
  right:22px;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:linear-gradient(180deg, #ffc83d 0%, #f4a500 100%);
  color:#1f2937;
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
  box-shadow:0 10px 22px rgba(244,165,0,0.24);
  z-index:2;
}

.plan-accent-line{
  position:absolute;
  top:0;
  left:28px;
  right:28px;
  height:6px;
  border-radius:0 0 10px 10px;
  background:linear-gradient(90deg, var(--pc-green) 0%, #ffc83d 100%);
}

.price-tag-premium{
  background:
    linear-gradient(180deg, #ffffff 0%, #eef8f1 100%);
  border:1px solid rgba(22,163,74,0.24);
  box-shadow:
    0 12px 28px rgba(17,49,123,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.plan-highlight-note{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,200,61,0.18);
  color:#9a5b00;
  font-size:13px;
  font-weight:800;
  margin:0 0 18px;
}

.btn-premium-full{
  width:100%;
  min-height:54px;
  font-size:18px;
  box-shadow:0 14px 30px rgba(34,197,94,0.24);
}

.plans-grid .plan-box:not(.plan-box-premium){
  opacity:0.98;
}

@media (max-width: 820px){
  .plan-box-premium{
    transform:none;
  }

  .plan-ribbon{
    top:-12px;
    right:16px;
    font-size:10px;
    min-height:30px;
    padding:0 12px;
  }

  .plan-accent-line{
    left:18px;
    right:18px;
    height:5px;
  }

  .plan-highlight-note{
    font-size:11px;
    min-height:32px;
    padding:0 10px;
    margin-bottom:14px;
  }

  .btn-premium-full{
    min-height:46px;
    font-size:15px;
  }
}
