:root{
    --blue:#1e66ff;
    --blue-700:#144fe0;
    --blue-50:#eef4ff;
    --text:#0b1220;
    --muted:#5b6475;
    --border:#e6eaf2;
    --bg:#ffffff;
    --shadow:0 16px 40px rgba(11,18,32,.12);
    --radius:18px;
    --radius-sm:12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background:var(--bg);
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,calc(100% - 40px));margin:0 auto}

/* Topbar */
.topbar{
    position:sticky;top:0;z-index:50;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
}
.topbar__inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 0;gap:18px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{height:42px;width:auto;display:block}
@media (max-width:768px){.brand__logo{height:36px}}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__name{font-weight:800;letter-spacing:-.02em}
.brand__tag{font-size:12px;color:var(--muted);margin-top:2px}

.nav{display:flex;align-items:center;gap:18px}
.navToggle{
    display:none;
    border:1px solid var(--border);
    background:#fff;
    border-radius:12px;
    padding:10px;
    cursor:pointer;
}
.navToggle span{
    display:block;width:20px;height:2px;
    background:var(--text);
    margin:4px 0;border-radius:2px;
}

/* Mobile nav */
.mobileNav{
    display:none;
    flex-direction:column;
    background:#fff;
    border-top:1px solid var(--border);
    padding:12px 20px 18px;
    gap:10px;
}
.mobileNav.open{display:flex}
.mobileNav a{
    font-weight:700;
    padding:14px 20px;
    border-bottom:1px solid var(--border);
    border-radius:12px;
}
.nav a.nav-active,
.mobileNav a.nav-active{
    background:var(--blue);
    color:#fff;
    padding:8px 14px;
    border-radius:12px;
}
.nav .btn.nav-active{background:var(--blue);color:#fff}

/* Buttons */
.btn{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    padding:12px 16px;border-radius:14px;
    font-weight:800;
    border:1px solid transparent;
    background:var(--blue);color:#fff;
    cursor:pointer;
    transition:.15s ease;
    box-shadow:0 10px 22px rgba(30,102,255,.20);
}
.btn:hover{background:var(--blue-700)}
.btn:active{transform:translateY(1px)}
.btn--ghost{
    background:#fff;
    border:1px solid var(--border);
    color:var(--text);
    box-shadow:none;
}
.btn--ghost:hover{background:var(--blue-50)}
.btn--small{padding:10px 12px;border-radius:12px;font-size:14px}
.btn--full{width:100%}

/* Hero */
.hero{
    padding:56px 0 30px;
    background:
            radial-gradient(900px 400px at 15% 5%, rgba(30,102,255,.12), transparent 55%),
            radial-gradient(800px 420px at 85% 15%, rgba(30,102,255,.10), transparent 60%),
            linear-gradient(#fff,#fff);
}
.hero__grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:34px;
    align-items:center;
}
.badge{
    display:inline-flex;align-items:center;
    padding:8px 12px;border-radius:999px;
    background:var(--blue-50);
    color:var(--blue);
    font-weight:800;letter-spacing:.01em;
    border:1px solid rgba(30,102,255,.18);
}
h1{
    margin:14px 0 10px;
    font-size:clamp(34px,4vw,52px);
    line-height:1.05;
    letter-spacing:-.03em;
}
.lead{
    margin:0;
    color:var(--muted);
    font-size:16px;
    line-height:1.6;
    max-width:60ch;
}
.hero__cta{display:flex;gap:12px;margin:18px 0;flex-wrap:wrap}
.trustRow{display:flex;flex-wrap:wrap;gap:10px}
.trustPill{
    border:1px solid var(--border);
    background:#fff;
    border-radius:999px;
    padding:8px 12px;
    font-weight:700;
    color:var(--muted);
}

/* Panel */
.hero__panel .panelCard{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--shadow);
    overflow:hidden;
}
.panelTop{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:14px 16px;
    border-bottom:1px solid var(--border);
    background:linear-gradient(#fff,#fafbff);
}
.dots span{
    width:10px;height:10px;border-radius:50%;
    display:inline-block;margin-right:6px;
    background:#d7dbe6;
}
.panelUrl{font-weight:700;color:var(--muted);font-size:13px}
.panelBody{padding:22px 18px 18px}
.shield{
    width:56px;height:56px;border-radius:18px;
    background:var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    display:grid;place-items:center;
}
.shield__inner{
    width:34px;height:34px;border-radius:12px;
    display:grid;place-items:center;
    background:var(--blue);
    color:#fff;
    font-weight:900;
}
.panelTitle{margin:14px 0 4px;font-weight:900;font-size:18px}
.panelSub{margin:0 0 14px;color:var(--muted);font-weight:600}
.panelList{display:grid;gap:10px;margin:12px 0}
.panelItem{
    display:flex;align-items:center;justify-content:space-between;
    padding:12px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
}
.panelItem span{color:var(--muted);font-weight:700}
.status{font-weight:900}
.status--valid{color:#0a7a2f}
.panelNote{
    margin-top:12px;
    padding:12px;
    border-radius:14px;
    background:var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    color:var(--muted);
    font-weight:700;
}

/* Sections */
.section{padding:56px 0}
.section--alt{background:linear-gradient(#fff,#f7f9ff)}
h2{
    margin:0 0 10px;
    font-size:clamp(24px,3vw,34px);
    letter-spacing:-.02em;
}
.sectionLead{
    margin:0 0 22px;
    color:var(--muted);
    line-height:1.6;
    max-width:75ch;
}

/* Feature grid */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    padding:18px;
    box-shadow:0 8px 22px rgba(11,18,32,.06);
}
.card h3{margin:0 0 8px;font-size:16px;letter-spacing:-.01em}
.card p{margin:0;color:var(--muted);line-height:1.6}

/* ===== PRICING (UPDATED) ===== */
.pricingHead{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}
.pricingNote{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}
.pricingNote__pill{
    border:1px solid var(--border);
    background:#fff;
    border-radius:999px;
    padding:8px 12px;
    font-weight:800;
    font-size:13px;
    color:var(--muted);
}

.pricingGrid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-top:24px;
}

.pricingCard{
    position:relative;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    padding:18px 16px 16px;
    text-align:left;
    box-shadow:0 10px 26px rgba(11,18,32,.08);
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    overflow:hidden;
}
.pricingCard:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 36px rgba(11,18,32,.12);
}

.planTop{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
}
.planTop h3{
    margin:0;
    font-size:18px;
    font-weight:900;
    letter-spacing:-.01em;
}
.planTag{
    font-size:12px;
    font-weight:900;
    padding:6px 10px;
    border-radius:999px;
    background:var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    color:var(--blue);
    white-space:nowrap;
}

.planPrice{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin:6px 0 10px;
}
.planAmount{
    font-size:34px;
    font-weight:900;
    letter-spacing:-.02em;
}
.planPeriod{
    color:var(--muted);
    font-weight:800;
    font-size:13px;
}

.planDesc{
    margin:0 0 14px;
    color:var(--muted);
    line-height:1.55;
    font-weight:600;
    min-height:48px;
}

.planList{
    list-style:none;
    padding:0;
    margin:0 0 14px;
    display:grid;
    gap:10px;
}
.planList li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--muted);
    font-weight:700;
    font-size:14px;
    line-height:1.35;
}
.tick{
    display:inline-grid;
    place-items:center;
    width:22px;height:22px;
    border-radius:8px;
    background:var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    color:var(--blue);
    font-weight:900;
    flex:0 0 22px;
    margin-top:1px;
}

.pricingCard .btn{margin-top:2px}

.pricingCard.featured{
    border:2px solid rgba(30,102,255,.55);
    box-shadow:0 22px 55px rgba(30,102,255,.18);
    transform:translateY(-6px);
    background:
            radial-gradient(900px 260px at 10% 0%, rgba(30,102,255,.10), transparent 55%),
            #fff;
}
.pricingCard.featured:hover{transform:translateY(-8px)}

.featuredBadge{
    position:absolute;
    top:12px;right:12px;
    background:var(--blue);
    color:#fff;
    font-weight:900;
    font-size:12px;
    padding:8px 10px;
    border-radius:999px;
    box-shadow:0 10px 22px rgba(30,102,255,.25);
}

.planFine{
    margin:10px 0 0;
    color:var(--muted);
    font-size:12px;
    font-weight:800;
    text-align:center;
}

.pricingFoot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
    margin-top:18px;
}
.pricingFoot__card{
    flex:1 1 520px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    padding:14px;
    box-shadow:0 10px 26px rgba(11,18,32,.06);
    display:flex;
    flex-direction:column;
    gap:6px;
}
.pricingFoot__card span{
    color:var(--muted);
    font-weight:700;
    line-height:1.5;
}

/* Split */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:start}
.bullets{margin:14px 0 0;padding-left:18px;color:var(--muted);line-height:1.8}
.bullets li{margin:6px 0}

/* Forms */
.formCard{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    padding:18px;
    box-shadow:0 10px 26px rgba(11,18,32,.08);
}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.field span{font-weight:800;font-size:13px;color:var(--text)}
input,textarea{
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    font-size:14px;
    outline:none;
    font-family:inherit;
    background:#fff;
}
input:focus,textarea:focus{
    border-color:rgba(30,102,255,.55);
    box-shadow:0 0 0 4px rgba(30,102,255,.12);
}
.formNote{margin:12px 0 0;color:var(--muted);font-size:13px;line-height:1.5}
.formMsg{margin-top:12px;font-weight:800;font-size:14px}
.formMsg.ok{color:#0a7a2f}
.formMsg.err{color:#b00020}
.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:12px}

/* Contact */
.contactGrid{display:grid;grid-template-columns:.9fr 1.1fr;gap:16px;align-items:start}
.contactCard{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    padding:18px;
    box-shadow:0 10px 26px rgba(11,18,32,.08);
}
.muted{color:var(--muted);line-height:1.6}
.contactMeta{display:grid;gap:10px;margin-top:14px}
.metaLabel{display:block;color:var(--muted);font-weight:800;font-size:12px;margin-bottom:2px}
.miniNote{
    margin-top:14px;
    padding:12px;
    border-radius:14px;
    background:var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    color:var(--muted);
    font-weight:700;
}

/* Footer */
.footer{border-top:1px solid var(--border);padding:20px 0;background:#fff}
.footer__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}
.footer p{margin:0;color:var(--muted);font-weight:700}
.footerLinks{display:flex;gap:14px}
.footerLinks a{color:var(--muted);font-weight:800;font-size:14px}
.footerLinks a:hover{color:var(--text)}

/* FAQ */
.faq{max-width:800px;margin-top:20px}
.faq details{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px 16px;
    margin-bottom:10px;
}
.faq summary{font-weight:800;cursor:pointer}
.faq p{margin-top:10px;color:var(--muted);line-height:1.6}

/* Responsive */
@media (max-width:1140px){
    .pricingGrid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:940px){
    .hero__grid,.split,.contactGrid{grid-template-columns:1fr}
    .grid{grid-template-columns:repeat(2,1fr)}
    .pricingGrid{grid-template-columns:repeat(2,1fr)}
    .nav{display:none}
    .navToggle{display:inline-block}
}
@media (max-width:560px){
    .grid{grid-template-columns:1fr}
    .pricingGrid{grid-template-columns:1fr}
    .twoCol{grid-template-columns:1fr}
    .container{width:min(1120px,calc(100% - 28px))}
    .planDesc{min-height:auto}
}

/* Pricing grid layout fix: 3 on desktop, 2 on tablet, 1 on mobile */
.pricingGrid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-top:24px;
}

/* Optional: make the featured card wider on large screens */
@media (min-width: 1024px){
    .pricingCard.featured{
        grid-column: span 2;
    }
}

/* Tablet */
@media (max-width: 940px){
    .pricingGrid{
        grid-template-columns:repeat(2, 1fr);
    }
    .pricingCard.featured{
        grid-column:auto; /* stops spanning on tablet */
    }
}

/* Mobile */
@media (max-width: 560px){
    .pricingGrid{
        grid-template-columns:1fr;
    }
}

/* Verify page two-column layout */
.verifyGrid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items:start;
}

/* Keep blocks tidy */
.verifyBlock .formCard{
    max-width: 520px;
}

/* Result actions */
.verifyActions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}

/* New status colours for public panel */
.status--revoked{color:#b00020}
.status--expired{color:#9a6b00}

/* Slight variations for “warning/error” icon blocks */
.shield--bad{
    background: rgba(176,0,32,.08);
    border:1px solid rgba(176,0,32,.18);
}
.shield__inner--bad{
    background:#b00020;
}
.shield--warn{
    background: rgba(154,107,0,.10);
    border:1px solid rgba(154,107,0,.18);
}

.panelNote--bad{
    background: rgba(176,0,32,.08);
    border: 1px solid rgba(176,0,32,.18);
    color: #7a0016;
}

/* Stack into 1 column on mobile */
@media (max-width: 940px){
    .verifyGrid{
        grid-template-columns: 1fr;
    }
    .verifyBlock .formCard{
        max-width: 100%;
    }
}
/* =========================
   Public Certificate Page
========================= */

.certWrap{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap:16px;
    align-items:start;
}

.certBox{
    background:#fff;
    border:2px solid rgba(30,102,255,.25); /* blue border */
    border-radius: var(--radius);
    padding:18px;
    box-shadow: 0 10px 26px rgba(11,18,32,.06);
}

.certBoxHead{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    padding-bottom:12px;
    border-bottom:1px solid var(--border);
}

.certTiny{
    font-size:12px;
    font-weight:900;
    color:var(--muted);
}

.certId{
    font-weight:900;
    font-size:18px;
    letter-spacing:.02em;
    margin-top:4px;
}

.certGridInfo{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px 14px;
    margin-top:14px;
}

.certInfoRow{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:12px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
}

.certInfoRow span{
    font-size:12px;
    font-weight:900;
    color:var(--muted);
}

.certInfoRow strong{
    font-weight:900;
    color:var(--text);
}

.certPill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    font-weight:900;
    font-size:12px;
    border:1px solid var(--border);
    white-space:nowrap;
}

.pill--valid{
    color:#0a7a2f;
    border-color: rgba(10,122,47,.35);
    background: rgba(10,122,47,.08);
}

.pill--revoked{
    color:#b00020;
    border-color: rgba(176,0,32,.35);
    background: rgba(176,0,32,.08);
}

.pill--expired{
    color:#9a6b00;
    border-color: rgba(154,107,0,.35);
    background: rgba(154,107,0,.10);
}

.pill--neutral{
    color:var(--muted);
    background:#fff;
}

.certAlert{
    margin-top:14px;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid var(--border);
    font-weight:800;
    line-height:1.5;
}

.certAlert--bad{
    background: rgba(176,0,32,.06);
    border-color: rgba(176,0,32,.18);
    color:#7a0016;
}

.certActions{
    margin-top:14px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.certFootNote{
    margin-top:14px;
    padding:12px;
    border-radius:14px;
    background: var(--blue-50);
    border:1px solid rgba(30,102,255,.18);
    color: var(--muted);
    font-weight:800;
}

/* Help box */
.certHelp{
    background:#fff;
    border:1px solid var(--border);
    border-radius: var(--radius);
    padding:18px;
    box-shadow: 0 10px 26px rgba(11,18,32,.06);
}

.certHelpActions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 940px){
    .certWrap{ grid-template-columns:1fr; }
    .certGridInfo{ grid-template-columns:1fr; }
}

/* =========================
   Public Verification Page
========================= */

.verifyBlock{
    background:#fff;
    border:2px solid rgba(30,102,255,.25);
    border-radius:16px;
    padding:28px 24px;
    text-align:center;
    box-shadow:0 20px 50px rgba(11,18,32,.06);
}

.verifyStatusTitle{
    font-size:14px;
    font-weight:900;
    color:var(--muted);
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.certPill{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    font-weight:900;
    font-size:14px;
    margin-bottom:14px;
}

.pill--valid{
    background:rgba(10,122,47,.1);
    color:#0a7a2f;
    border:1px solid rgba(10,122,47,.3);
}

.pill--revoked{
    background:rgba(176,0,32,.1);
    color:#b00020;
    border:1px solid rgba(176,0,32,.3);
}

.pill--expired{
    background:rgba(154,107,0,.12);
    color:#9a6b00;
    border:1px solid rgba(154,107,0,.3);
}

.verifyIssuer{
    font-weight:800;
    margin-bottom:22px;
}

.certDetailsBox{
    margin-top:10px;
    border-top:1px solid var(--border);
    padding-top:20px;
    display:grid;
    gap:12px;
    text-align:left;
}

.certRow{
    display:flex;
    justify-content:space-between;
    gap:12px;
    border:1px solid var(--border);
    padding:12px 14px;
    border-radius:14px;
}

.certRow span{
    font-size:12px;
    font-weight:900;
    color:var(--muted);
}

.certRow strong{
    font-weight:900;
}

.verifyContactBlock{
    margin-top:24px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:22px;
    text-align:center;
}

.certAlert{
    margin-top:16px;
    padding:12px;
    border-radius:12px;
    font-weight:800;
}

.certAlert--bad{
    background:rgba(176,0,32,.08);
    border:1px solid rgba(176,0,32,.3);
    color:#7a0016;
}
