
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,sans-serif;
  color:#334155;
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,p{margin:0}
h1,h2,h3,h4,.font-main,.fbox-title,.brand-kicker,.btn,.p1-card-title,.price-now{
  font-family:"Figtree",sans-serif;
}

:root{
  --blue:#0b6bcb;
  --blue-dark:#084e96;
  --ink:#0f2744;
  --muted:#5b6b7c;
  --line:#e2e8f0;
  --bg:#f5f8fc;
  --bg2:#eef4fb;
  --radius:16px;
  --shadow:0 10px 30px rgba(15,39,68,.08);
  --container:1120px;
}

.container{width:min(100% - 2rem, var(--container));margin-inline:auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:48px;padding:.75rem 1.35rem;border-radius:999px;
  font-weight:700;font-size:.95rem;border:2px solid transparent;
  transition:.2s ease;cursor:pointer;white-space:nowrap;
}
.btn-primary{background:var(--blue);color:#fff;border-color:var(--blue)}
.btn-primary:hover{background:var(--blue-dark);border-color:var(--blue-dark)}
.btn-ghost{background:transparent;color:var(--ink);border-color:#cbd5e1}
.btn-ghost:hover{border-color:var(--blue);color:var(--blue)}
.btn-white{background:#fff;color:var(--ink)}
.btn-white:hover{background:#e8f1fb}
.btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn-outline-white:hover{background:#fff;color:var(--ink)}
.btn-sm{min-height:40px;padding:.55rem 1rem;font-size:.875rem}

/* Header */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow:visible;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;min-height:72px;
  overflow:visible;
  position:relative;
}
.logo{
  display:inline-flex;align-items:center;
  flex:0 1 auto;min-width:0;max-width:220px;
}
.logo img{
  display:block;
  height:36px;width:auto;max-width:100%;
  object-fit:contain;object-position:left center;
  transition:filter .25s ease;
}
@media (max-width:979px){
  .header-inner{min-height:64px;gap:.75rem}
  .logo{max-width:min(148px,46vw)}
  .logo img{height:28px}
}

/* Demo-5 style: transparent header over hero, solid on scroll */
.site-header.header-blend{
  position:absolute;left:0;right:0;top:0;
  background:transparent;border-bottom-color:transparent;
  backdrop-filter:none;
}
.site-header.header-blend .nav-link,
.site-header.header-blend .nav-desktop summary{
  color:rgba(255,255,255,.92);
}
.site-header.header-blend .nav-link:hover,
.site-header.header-blend .nav-desktop summary:hover{
  background:transparent;color:#e7e7e7;
}
.site-header.header-blend .logo img{
  filter:brightness(0) invert(1);
}
.site-header.header-blend .btn-ghost{
  border-color:rgba(255,255,255,.55);color:#fff;background:transparent;
}
.site-header.header-blend .btn-ghost:hover,
.site-header.header-blend .btn-ghost:focus-visible{
  background:#fff;color:#0f2744;border-color:#fff;
}
.site-header.header-blend .btn-primary{
  background:#fff;color:var(--ink);border-color:#fff;
}
.site-header.header-blend .btn-primary:hover{
  background:#e8f1fb;border-color:#e8f1fb;
}
.site-header.header-blend .menu-toggle{
  background:transparent;border-color:rgba(255,255,255,.4);
}
.site-header.header-blend .menu-toggle span:not(.sr-only),
.site-header.header-blend .menu-toggle span:not(.sr-only)::before,
.site-header.header-blend .menu-toggle span:not(.sr-only)::after{
  background:#fff;
}
.site-header.header-blend .nav-mobile{
  background:rgba(8,32,64,.96);border-top-color:rgba(255,255,255,.12);
}
.site-header.header-blend .nav-mobile a:not(.btn),
.site-header.header-blend .nav-mobile summary{color:#fff;border-bottom-color:rgba(255,255,255,.1)}
.site-header.header-blend .nav-mobile details a:not(.btn){color:rgba(255,255,255,.75)}
.site-header.header-blend .nav-mobile .btn-ghost{
  border-color:rgba(255,255,255,.45);color:#fff;background:transparent;
}
.site-header.header-blend .nav-mobile .btn-ghost:hover,
.site-header.header-blend .nav-mobile .btn-ghost:focus-visible{
  background:#fff;color:#0f2744;border-color:#fff;
}

/* Solid state after scroll (like demo-5 .scroll) */
.site-header.header-blend.is-solid{
  position:fixed;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom-color:var(--line);
  box-shadow:0 8px 24px rgba(15,39,68,.08);
}
.site-header.header-blend.is-solid .nav-link,
.site-header.header-blend.is-solid .nav-desktop summary{color:#181d27}
.site-header.header-blend.is-solid .nav-link:hover,
.site-header.header-blend.is-solid .nav-desktop summary:hover{
  background:transparent;color:#21164c;
}
.site-header.header-blend.is-solid .logo img{filter:none}
.site-header.header-blend.is-solid .btn-ghost{
  border-color:#cbd5e1;color:var(--ink);background:transparent;
}
.site-header.header-blend.is-solid .btn-ghost:hover,
.site-header.header-blend.is-solid .btn-ghost:focus-visible{
  background:transparent;border-color:var(--blue);color:var(--blue);
}
.site-header.header-blend.is-solid .btn-primary{
  background:var(--blue);color:#fff;border-color:var(--blue);
}
.site-header.header-blend.is-solid .menu-toggle{
  background:#fff;border-color:var(--line);
}
.site-header.header-blend.is-solid .menu-toggle span:not(.sr-only),
.site-header.header-blend.is-solid .menu-toggle span:not(.sr-only)::before,
.site-header.header-blend.is-solid .menu-toggle span:not(.sr-only)::after{
  background:var(--ink);
}
.site-header.header-blend.is-solid .nav-mobile{
  background:#fff;border-top-color:var(--line);
}
.site-header.header-blend.is-solid .nav-mobile a:not(.btn),
.site-header.header-blend.is-solid .nav-mobile summary{color:var(--ink);border-bottom-color:#f1f5f9}
.site-header.header-blend.is-solid .nav-mobile details a:not(.btn){color:var(--muted)}
.site-header.header-blend .nav-mega{
  background:#fff;border-color:#e5e7eb;
}
.site-header.header-blend .nav-mega-item strong{color:#21164c}
.site-header.header-blend .nav-mega-item span{color:#6b7280}
.site-header.header-blend .nav-mega-item .nav-mega-price{color:#7b8494}

.nav-desktop{display:none;align-items:center;gap:.25rem}
.nav-desktop > details,
.nav-desktop > a.nav-link{
  position:static;
}
.nav-link,.nav-desktop summary{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:10px 15px;border-radius:0;
  color:#181d27;
  font-family:"Inter",system-ui,sans-serif;
  font-weight:500;
  font-size:1.1rem;
  line-height:1.4;
  letter-spacing:0;
  list-style:none;cursor:pointer;
}
.nav-desktop summary::-webkit-details-marker{display:none}
.nav-link:hover,.nav-desktop summary:hover,
.nav-link.is-active{background:transparent;color:#21164c}
.nav-desktop summary::after{
  content:"";
  width:0;height:0;margin-left:.35rem;
  border-left:4px solid transparent;border-right:4px solid transparent;
  border-top:4px solid currentColor;opacity:.7;
}
.nav-mega{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;
  box-shadow:0 18px 50px rgba(33,22,76,.14);
  padding:1.15rem;display:none;z-index:120;
}
.nav-desktop details[open] > .nav-mega{display:block}
.nav-mega-grid{
  display:grid;gap:.75rem;
  grid-template-columns:1fr;
}
.nav-mega-grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.nav-mega-grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.nav-mega-item{
  display:block;padding:1rem 1.05rem;border-radius:12px;
  border:1px solid transparent;text-align:left;
  transition:background .2s ease, border-color .2s ease;
}
.nav-mega-item:hover{
  background:#f7f5ff;border-color:#e4dffc;
}
.nav-mega-item strong{
  display:block;
  font-family:"Figtree",sans-serif;
  font-size:1.05rem;font-weight:700;color:#21164c;
  margin-bottom:.35rem;line-height:1.3;
}
.nav-mega-item span{
  display:block;
  font-family:"Inter",system-ui,sans-serif;
  font-size:.92rem;font-weight:400;color:#6b7280;line-height:1.55;
}
.nav-mega-item .nav-mega-price{
  display:block;
  margin-top:.45rem;
  font-family:"Inter",system-ui,sans-serif;
  font-size:.86rem;font-weight:700;color:#7b8494;line-height:1.4;
}
.header-cta{display:none;align-items:center;gap:.65rem}
.header-cta .btn{
  font-family:"Inter",system-ui,sans-serif;
  font-size:1.025rem;font-weight:600;
  min-height:42px;padding:.45rem 1.1rem;border-radius:10px;
  line-height:1;white-space:nowrap;
}
.nav-mobile a:not(.btn),.nav-mobile summary{
  font-family:"Inter",system-ui,sans-serif;
  font-size:1.1rem;font-weight:500;
}
.menu-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  width:44px;height:44px;border:1px solid var(--line);border-radius:12px;background:#fff;
}
.menu-toggle span:not(.sr-only){display:block;width:18px;height:2px;background:var(--ink);position:relative}
.menu-toggle span:not(.sr-only)::before,.menu-toggle span:not(.sr-only)::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink);
}
.menu-toggle span:not(.sr-only)::before{top:-6px}
.menu-toggle span:not(.sr-only)::after{top:6px}

.nav-mobile{
  display:none;border-top:1px solid var(--line);padding:1rem 0 1.25rem;
}
.nav-mobile.is-open{display:block}
.nav-mobile a:not(.btn),.nav-mobile summary{
  display:block;padding:.75rem 1.15rem;font-weight:600;color:var(--ink);border-bottom:1px solid #f1f5f9;
}
.nav-mobile details{border-bottom:1px solid #f1f5f9}
.nav-mobile details summary{cursor:pointer;list-style:none}
.nav-mobile .nav-mega-item{
  padding:.65rem 1.15rem .65rem 2.15rem;border:0;border-radius:0;
}
.nav-mobile .nav-mega-item strong{font-size:1rem;margin-bottom:.15rem}
.nav-mobile .nav-mega-item span{font-size:.88rem}
.nav-mobile .nav-mega-item .nav-mega-price{font-size:.82rem;margin-top:.3rem}
.nav-mobile .mobile-cta{display:flex;margin-top:1rem;padding:0 1.15rem}
.nav-mobile .mobile-cta .btn{
  width:100%;box-sizing:border-box;
  line-height:1;min-height:44px;white-space:nowrap;
}

@media (min-width:980px){
  .nav-desktop,.header-cta{display:flex}
  .menu-toggle,.nav-mobile{display:none!important}
}
@media (max-width:979px){
  .header-cta{display:flex;margin-left:auto;flex:0 0 auto}
  .header-cta .btn{
    min-height:40px;padding:.5rem .95rem;font-size:.875rem;
    line-height:1;white-space:nowrap;
  }
  .menu-toggle{margin-left:.35rem;flex:0 0 auto}
  .nav-mega{position:static;transform:none;min-width:0;box-shadow:none;border:0;padding:0;display:none;background:transparent}
  .nav-mobile details[open] > .nav-mega{display:block}
  .nav-mega-grid,.nav-mega-grid.cols-3,.nav-mega-grid.cols-2{grid-template-columns:1fr;gap:0}
}

/* Hero (default / inner pages) */
.brand-kicker{
  display:inline-block;font-size:.8rem;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;color:var(--blue);margin-bottom:1rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1rem}
.hero-5 .hero-actions{justify-content:center}

/* Demo-5 style homepage hero — match sample (image bg, no custom overlay) */
.hero-5{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  color:#fff;
  background-color:#2a1f5c;
  background-image:url("/images/hero-5.jpg");
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
  padding:9.5rem 1rem 4rem;
  text-align:center;
  margin-bottom:0;
}
@media (max-width:1023px){
  .hero-5{
    background-attachment:scroll;
    padding-top:7.5rem;
    padding-bottom:4.5rem;
  }
}
.hero-5-inner{
  width:min(100% - 0.5rem, 980px);
  margin-inline:auto;
}
.hero-5 .brand-kicker{
  color:rgba(255,255,255,.92);
  margin-bottom:1.25rem;
}
.hero-5 h1{
  font-family:"Figtree",sans-serif;
  font-size:clamp(1.85rem, 4.8vw, 4.4rem);
  line-height:1.15;font-weight:500;color:#fff;
  margin:0 auto 1.15rem;max-width:none;
  letter-spacing:-0.01em;
}
.hero-5 h1 .hero-growth{
  display:inline-block;
  height:clamp(1.7rem, 3.8vw, 3.5rem);
  width:auto;
  vertical-align:middle;
  margin:0 .12em;
  position:relative;
  top:-.06em;
}
.hero-5 h1 .hero-title-break{
  display:block;
  white-space:nowrap;
}
@media (max-width:380px){
  .hero-5 h1{font-size:1.55rem}
  .hero-5 h1 .hero-growth{height:1.4rem}
}
.hero-5 .hero-lead{
  font-size:clamp(1.05rem, 2vw, 1.25rem);
  color:rgba(255,255,255,.92);line-height:1.7;
  margin:0 auto 1.85rem;max-width:42rem;
}
.hero-5 .hero-actions{justify-content:center;margin-bottom:0}
.hero-5 .btn-primary{
  background:#7063db;border-color:#7063db;color:#fff;
}
.hero-5 .btn-primary:hover{background:#5b50c4;border-color:#5b50c4}
.hero-5 .btn-ghost{
  border-color:rgba(255,255,255,.7);color:#fff;background:transparent;
}
.hero-5 .btn-ghost:hover{background:#fff;color:#21164c;border-color:#fff}

/* Benefits inside hero (demo-5 cards, no section head) */
.hero-benefits{
  width:min(100% - 2rem, 1120px);
  margin:3rem auto 0;
}
.benefits-grid{
  display:grid;gap:1.15rem;
  grid-template-columns:1fr;
}
@media (min-width:700px){.benefits-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1100px){.benefits-grid{grid-template-columns:repeat(4,1fr)}}
.fbox{
  background:transparent;border:2px solid rgba(255,255,255,.85);
  border-radius:14px;padding:1.5rem 1.25rem 1.4rem;height:100%;
  text-align:left;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.fbox:hover{
  transform:translateY(-2px);
  border-color:#fff;
  background:rgba(255,255,255,.08);
}
.fbox-ico{
  position:relative;width:64px;height:64px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.75rem;
}
.fbox-ico svg.blob{
  position:absolute;inset:-8px auto auto -12px;width:78px;height:78px;z-index:0;
  opacity:.35;
}
.fbox-ico .ico{
  position:relative;z-index:1;
  width:36px;height:36px;color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.fbox-ico .ico svg{width:100%;height:100%;fill:currentColor}
.fbox-title{
  display:block;font-size:1.15rem;font-weight:800;color:#fff;margin-bottom:.4rem;
}
.fbox-text{color:rgba(255,255,255,.88);font-size:.95rem;line-height:1.6;margin:0}

/* Product features (Lutch fbox style, light) */
.features{
  padding:3.5rem 0 1rem;
  background:#fff;
}
.features .section-head{margin-bottom:2rem}
.features-grid{
  display:grid;gap:1.15rem;
  grid-template-columns:1fr;
}
@media (min-width:700px){.features-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1060px){.features-grid{grid-template-columns:repeat(3,1fr);gap:1.35rem}}
.feature-card{
  background:#fff;
  border:2px solid #e5e7eb;
  border-radius:14px;
  padding:1.6rem 1.35rem 1.5rem;
  height:100%;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-card:hover{
  transform:translateY(-2px);
  border-color:#cfc7f5;
  box-shadow:0 14px 36px rgba(33,22,76,.08);
}

/* Image-box features (Cloud Hosting — matches live 2x2) */
.features-ibox{
  display:grid;gap:2.25rem 2.75rem;
  grid-template-columns:1fr;
}
@media (min-width:800px){
  .features-ibox{grid-template-columns:repeat(2,1fr)}
}
.feature-ibox{
  min-width:0;
  text-align:center;
}
.feature-ibox .feature-ico{
  width:auto;height:auto;margin:0 auto 1rem;
  padding:0;background:transparent;border-radius:0;
}
.feature-ibox .feature-ico img{
  width:100px;height:100px;object-fit:contain;margin:0 auto;
}
.feature-ibox .feature-title{
  display:block;
  font-size:clamp(1.15rem,2vw,1.35rem);
  font-weight:800;color:var(--ink);
  margin:0 0 .55rem;line-height:1.3;
  text-align:center;
}
.feature-ibox .feature-text{
  margin:0 auto;font-size:1rem;line-height:1.7;color:#4b5563;
  max-width:34rem;text-align:center;
}
.features-layout-ibox .section-head{
  text-align:center;max-width:46rem;margin-left:auto;margin-right:auto;
}
.feature-ico{
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.85rem;
  border-radius:14px;
  background:#f3f0ff;
  color:var(--blue,#0b6bcb);
}
.feature-ico img{
  width:48px;height:48px;object-fit:contain;display:block;
}
.feature-ico svg{
  width:28px;height:28px;display:block;
}
.feature-ico.svg-only{background:#eef4fb}
.features.features-soft{background:#f7fafc;padding:3.5rem 0}
.features + .features,
.compare + .features{padding-top:3.5rem}
.supersite{
  padding:3.5rem 0;
  background:#fff;
}
.supersite-grid{
  display:grid;gap:1.5rem;align-items:center;
}
@media(min-width:900px){.supersite-grid{grid-template-columns:1.05fr .95fr}}
.supersite-copy h2{
  font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;color:var(--ink);margin-bottom:.75rem;
}
.supersite-copy p{color:var(--muted);line-height:1.75;font-size:1.02rem;margin-bottom:1.25rem}
.supersite-thumbs{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.65rem;
}
.supersite-thumbs img{
  width:100%;height:auto;border-radius:12px;display:block;
  border:1px solid #e5e7eb;
}

/* Free migration */
.migration{
  padding:3.75rem 0;
  background:
    radial-gradient(ellipse 55% 60% at 10% 20%, rgba(11,107,203,.08), transparent 60%),
    linear-gradient(180deg,#f7fafc 0%,#fff 100%);
}
.migration-grid{
  display:grid;gap:1.75rem;align-items:center;
}
@media(min-width:900px){.migration-grid{grid-template-columns:1.1fr .9fr;gap:2.5rem}}
.migration-copy h2{
  font-size:clamp(1.7rem,3.2vw,2.35rem);font-weight:800;color:var(--ink);
  line-height:1.2;margin-bottom:.85rem;
}
.migration-copy .lead{
  color:var(--muted);font-size:1.05rem;line-height:1.75;margin-bottom:1.25rem;max-width:36rem;
}
.migration-points{
  display:grid;gap:.7rem;margin:0 0 1.5rem;padding:0;list-style:none;
}
.migration-points li{
  display:flex;align-items:flex-start;gap:.55rem;
  font-size:.98rem;font-weight:500;color:var(--ink);line-height:1.45;
}
.migration-points .check-ico{
  flex:0 0 auto;width:1.15rem;height:1.15rem;margin-top:.12rem;color:var(--blue,#0b6bcb);
}
.migration-panel{
  background:#fff;border:2px solid #e5e7eb;border-radius:18px;padding:1.6rem 1.4rem;
  box-shadow:0 14px 36px rgba(33,22,76,.06);
}
.migration-panel .kicker{
  display:inline-block;font-size:.78rem;font-weight:800;letter-spacing:.06em;
  text-transform:uppercase;color:var(--blue);margin-bottom:.75rem;
}
.migration-panel h3{
  font-size:1.25rem;font-weight:800;color:var(--ink);margin-bottom:.55rem;line-height:1.3;
}
.migration-panel p{color:var(--muted);line-height:1.7;font-size:.98rem;margin:0}
.feature-title{
  display:block;
  font-family:"Figtree",sans-serif;
  font-size:1.2rem;font-weight:800;color:var(--ink);
  margin-bottom:.45rem;line-height:1.3;
}
.feature-text{
  color:var(--muted);font-size:.95rem;line-height:1.65;margin:0;
}

/* Sections */
.section{padding:4rem 0}
.section-head{text-align:center;max-width:40rem;margin:0 auto 2.5rem}
.section-head .eyebrow{
  display:inline-block;font-size:.78rem;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;color:var(--blue);margin-bottom:.75rem;
}
.section-head h2{
  font-size:clamp(1.6rem, 3vw, 2.25rem);color:var(--ink);font-weight:800;line-height:1.25;margin-bottom:.75rem;
}
.section-head p{color:var(--muted);font-size:1.05rem}

.bg-soft{background:var(--bg)}
.bg-soft2{background:var(--bg2)}

/* Service cards */
.cards-3{
  display:grid;gap:1.25rem;
  grid-template-columns:1fr;
}
@media (min-width:700px){.cards-3{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.cards-3{grid-template-columns:repeat(3,1fr)}}

.service-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;transition:.2s ease;height:100%;
  display:flex;flex-direction:column;
}
.service-card:hover{border-color:#b6d4f5;box-shadow:var(--shadow);transform:translateY(-2px)}
.service-media{
  position:relative;
  background:linear-gradient(165deg,#dcecfb 0%,#eef5fc 45%,#f8fbff 100%);
  aspect-ratio:4 / 3;
  padding:0;
  overflow:hidden;
}
.service-media img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:cover;
  object-position:center;
  transition:transform .35s ease;
}
.service-card:hover .service-media img{transform:scale(1.04)}
.badge{
  position:absolute;top:1rem;left:1rem;z-index:1;
  background:var(--blue);color:#fff;font-size:.7rem;font-weight:800;
  letter-spacing:.04em;text-transform:uppercase;padding:.35rem .6rem;border-radius:999px;
}
.service-body{padding:1.25rem 1.35rem 1.5rem}
.service-body h3{font-size:1.2rem;color:var(--ink);margin-bottom:.4rem}
.service-body p{color:var(--muted);font-size:.95rem;line-height:1.65}
.service-price{
  display:block;margin-top:.65rem;
  font-size:.9rem;font-weight:700;color:#7b8494;line-height:1.4;
}

/* Pricing */
.price-grid{
  display:grid;gap:1.25rem;
  grid-template-columns:1fr;
}
@media (min-width:760px){.price-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1100px){.price-grid{grid-template-columns:repeat(3,1fr)}}

.price-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.5rem;display:flex;flex-direction:column;min-height:100%;
}
.price-card.featured{
  border-color:var(--blue);
  box-shadow:0 12px 36px rgba(11,107,203,.15);
}
.price-badge{
  display:inline-flex;align-self:flex-start;
  background:#e8f2fc;color:var(--blue);font-size:.72rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.04em;padding:.3rem .65rem;border-radius:999px;margin-bottom:.75rem;
}
.price-save{
  display:inline-flex;align-self:flex-start;
  background:#fde68a;color:var(--ink);font-size:.8rem;font-weight:800;
  padding:.35rem .7rem;border-radius:999px;margin-bottom:.75rem;
}
.price-card h3{font-size:1.25rem;color:var(--ink);margin-bottom:.35rem}
.price-old{color:#94a3b8;text-decoration:line-through;font-size:.9rem;margin-bottom:.15rem}
.price-now{font-size:1.7rem;font-weight:800;color:var(--ink);margin-bottom:1rem}
.price-features{display:grid;gap:.55rem;margin-bottom:1.35rem;flex:1}
.price-features li{
  display:grid;grid-template-columns:18px 1fr;gap:.55rem;
  font-size:.92rem;color:#475569;align-items:start;
}
.price-features li::before{content:"✓";color:var(--blue);font-weight:800}
.price-card .btn{width:100%}

/* FAQ */
.faq-list{display:grid;gap:.75rem;max-width:820px;margin:0 auto}
.faq-item{
  background:#fff;border:1px solid var(--line);border-radius:14px;padding:1rem 1.15rem;
}
.faq-item.is-hidden{display:none}
.faq-list.is-expanded .faq-item.is-hidden{display:block}
.faq-item summary{
  cursor:pointer;list-style:none;font-weight:700;color:var(--ink);
  display:flex;justify-content:space-between;gap:1rem;align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";color:var(--blue);font-size:1.25rem;font-weight:700}
.faq-item[open] summary::after{content:"–"}
.faq-item p{margin-top:.75rem;color:var(--muted);font-size:.95rem;line-height:1.7}
.faq-more-wrap{display:flex;justify-content:center;margin-top:1.35rem}
.faq-more{
  appearance:none;border:1px solid #dbe3ef;background:#fff;color:var(--ink);
  font-family:"Inter",system-ui,sans-serif;font-size:.95rem;font-weight:700;
  padding:.7rem 1.25rem;border-radius:12px;cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}
.faq-more:hover{background:#f7fbff;border-color:#c7d7ea;color:var(--blue)}
.faq-more.is-hidden{display:none}

/* Testimonials */
.testi-grid{display:grid;gap:1.25rem}
@media (min-width:800px){.testi-grid{grid-template-columns:repeat(2,1fr)}}
.testi-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.4rem 1.5rem;
}
.stars{color:#f59e0b;letter-spacing:1px;margin-bottom:.75rem}
.testi-card p{color:var(--muted);line-height:1.7;margin-bottom:1rem}
.testi-card strong{color:var(--ink)}

/* Content sections */
.content-block{max-width:760px;margin:0 auto}
.content-block + .content-block{margin-top:2rem}
.content-block h2{font-size:1.6rem;color:var(--ink);margin-bottom:.85rem;font-weight:800}
.content-block p{color:var(--muted);line-height:1.8;font-size:1.02rem}
.prose p{margin-bottom:1rem;color:var(--muted);line-height:1.8}

/* GEO / AEO product facts — machine-readable only (not shown in UI) */
.geo-facts-sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;white-space:nowrap}

/* AUP / legal document */
.aup-page{padding-top:2.5rem}
.aup-intro{max-width:44rem;margin-bottom:2.25rem}
.aup-intro h1{
  font-size:clamp(1.75rem, 3vw, 2.35rem);color:var(--ink);font-weight:800;
  line-height:1.2;margin-bottom:.75rem;
}
.aup-intro .lead{color:var(--muted);font-size:1.05rem;line-height:1.75;margin:0}
.aup-layout{
  display:grid;gap:2rem;align-items:start;
}
@media (min-width:960px){
  .aup-layout{grid-template-columns:15.5rem minmax(0,1fr);gap:2.75rem}
}
.aup-toc{
  position:sticky;top:5.5rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.1rem 1.15rem;
}
.aup-toc-title{
  display:block;font-size:.78rem;font-weight:700;letter-spacing:.04em;
  text-transform:uppercase;color:var(--muted);margin-bottom:.85rem;
}
.aup-toc ul{list-style:none;margin:0;padding:0;display:grid;gap:.35rem}
.aup-toc li{margin:0}
.aup-toc a{
  display:block;color:var(--ink);text-decoration:none;font-size:.92rem;
  line-height:1.4;padding:.35rem .45rem;border-radius:8px;
  transition:background .15s ease,color .15s ease;
}
.aup-toc a:hover{background:#f7fbff;color:var(--blue)}
.aup-toc .toc-parent > a{font-weight:700;color:var(--ink)}
.aup-toc .toc-children{margin:.15rem 0 .55rem .35rem;padding-left:.55rem;border-left:2px solid #e8eef6}
.aup-toc .toc-children a{font-size:.88rem;color:var(--muted);font-weight:500}
.aup-prose{min-width:0;max-width:48rem}
.aup-prose h2{
  font-size:1.55rem;color:var(--ink);font-weight:800;line-height:1.25;
  margin:2.25rem 0 1rem;scroll-margin-top:5.5rem;
}
.aup-prose h2:first-child{margin-top:0}
.aup-prose h3{
  font-size:1.3rem;color:var(--ink);font-weight:800;line-height:1.3;
  margin:2.1rem 0 .9rem;scroll-margin-top:5.5rem;
}
.aup-prose h4{
  font-size:1.08rem;color:var(--ink);font-weight:700;line-height:1.35;
  margin:1.6rem 0 .7rem;scroll-margin-top:5.5rem;
}
.aup-prose p{color:var(--muted);line-height:1.8;margin:0 0 1rem;font-size:1.02rem}
.aup-prose ul,.aup-prose ol{
  color:var(--muted);line-height:1.75;margin:0 0 1.15rem 1.15rem;
  padding:0;font-size:1.02rem;
}
.aup-prose li{margin-bottom:.45rem}
.aup-prose li ul,.aup-prose li ol{margin-top:.45rem;margin-bottom:.25rem}
.aup-prose strong,.aup-prose b{color:var(--ink);font-weight:700}
.aup-prose hr{border:0;border-top:1px solid var(--line);margin:2rem 0}
.aup-prose a{color:var(--blue);text-decoration:underline;text-underline-offset:2px}
@media (max-width:959px){
  .aup-toc{position:static}
}

/* Knowledge base */
.kb-page{padding:0 0 3.5rem}
.kb-hero{
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(11,107,203,.12), transparent 55%),
    linear-gradient(180deg,#f7fbff 0%,#fff 100%);
  border-bottom:1px solid var(--line);
  padding:2.75rem 0 2.15rem;
  margin-bottom:2rem;
}
.kb-hero .kb-kicker{
  display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--blue);margin:0 0 .55rem;
}
.kb-hero h1{
  font-size:clamp(1.85rem, 3.2vw, 2.45rem);color:var(--ink);font-weight:800;
  line-height:1.15;margin:0 0 .65rem;max-width:18ch;
}
.kb-hero .lead{color:var(--muted);font-size:1.05rem;line-height:1.75;margin:0 0 1.25rem;max-width:38rem}
.kb-search-wrap{position:relative;max-width:32rem}
.kb-search{
  width:100%;border:1px solid var(--line);border-radius:12px;
  padding:.85rem 1rem .85rem 2.7rem;font:inherit;font-size:1rem;
  background:#fff;box-shadow:0 8px 24px rgba(15,39,68,.04);
}
.kb-search:focus{outline:2px solid rgba(11,107,203,.25);border-color:var(--blue)}
.kb-search-wrap:before{
  content:"";position:absolute;left:1rem;top:50%;width:16px;height:16px;
  transform:translateY(-50%);pointer-events:none;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%235b6b7c' stroke-width='2' viewBox='0 0 24 24'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.5-3.5'/></svg>") center/contain no-repeat;
}
.kb-cat-grid{
  display:grid;gap:.85rem;margin:0 0 2.25rem;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:800px){
  .kb-cat-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
}
.kb-cat-card{
  display:flex;flex-direction:column;gap:.35rem;min-height:100%;
  padding:1rem 1.05rem;border:1px solid var(--line);border-radius:14px;
  background:#fff;text-decoration:none;color:inherit;
  transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease;
}
.kb-cat-card:hover{
  border-color:#c9d8ea;box-shadow:0 10px 24px rgba(15,39,68,.06);transform:translateY(-1px)
}
.kb-cat-card strong{color:var(--ink);font-size:.98rem;line-height:1.3}
.kb-cat-card span{color:var(--muted);font-size:.82rem}
.kb-layout{display:grid;gap:2rem;align-items:start}
@media (min-width:960px){
  .kb-layout{grid-template-columns:15.5rem minmax(0,1fr);gap:2.5rem}
}
.kb-toc .aup-toc-title{margin-bottom:.65rem}
.kb-toc a span{color:var(--muted);font-weight:500;font-size:.82rem}
.kb-cats{display:grid;gap:1.75rem}
.kb-cat{
  background:#fff;border:1px solid var(--line);border-radius:16px;
  padding:1.15rem 1.2rem 1.05rem;scroll-margin-top:5.75rem;
}
.kb-cat-head{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;margin:0 0 .35rem}
.kb-cat h2{font-size:1.15rem;font-weight:800;color:var(--ink);margin:0}
.kb-cat .kb-count{color:var(--muted);font-size:.82rem;white-space:nowrap}
.kb-cat > p{color:var(--muted);font-size:.92rem;margin:0 0 .85rem;line-height:1.55}
.kb-list{list-style:none;margin:0;padding:0;display:grid;gap:0}
@media (min-width:700px){
  .kb-cat .kb-list{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:1.25rem}
}
.kb-list a{
  display:flex;align-items:center;justify-content:space-between;gap:.75rem;
  padding:.55rem 0;border-bottom:1px solid #eef2f6;
  text-decoration:none;color:var(--ink);font-weight:600;font-size:.95rem;line-height:1.4;
}
.kb-list li:last-child a{border-bottom:0}
.kb-list a:after{
  content:"";flex:0 0 7px;height:7px;border-right:2px solid #9aa8b8;border-top:2px solid #9aa8b8;
  transform:rotate(45deg);opacity:.55;
}
.kb-list a:hover{color:var(--blue)}
.kb-empty{color:var(--muted);padding:1rem 0}

.kb-article-page{padding:1.5rem 0 3.5rem}
.kb-article-wrap{max-width:48rem;margin:0 auto}
.kb-crumb{
  display:flex;flex-wrap:wrap;align-items:center;gap:.35rem .5rem;
  font-size:.88rem;color:var(--muted);margin:0 0 1.15rem;
}
.kb-crumb a{color:var(--blue);text-decoration:none}
.kb-crumb a:hover{text-decoration:underline}
.kb-crumb .kb-crumb-sep{color:#b7c2cd}
.kb-cat-pill{
  display:inline-block;margin:0 0 .7rem;padding:.28rem .65rem;border-radius:999px;
  background:#eef6ff;color:var(--blue);font-size:.78rem;font-weight:700;letter-spacing:.02em;
}
.kb-prose{min-width:0}
.kb-article-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:1.5rem 1.35rem 1.7rem;
}
@media (min-width:700px){
  .kb-article-card{padding:2rem 2.1rem 2.15rem}
}
.kb-prose h1{
  font-size:clamp(1.45rem, 2.4vw, 1.95rem);color:var(--ink);font-weight:800;
  line-height:1.28;margin:0 0 1.15rem;
}
.kb-prose img{
  max-width:100%;height:auto;border:1px solid var(--line);border-radius:12px;
  margin:.25rem 0 1.15rem;display:block;background:#f8fafc;
}
.kb-prose p,.kb-prose li{color:var(--muted);line-height:1.8;font-size:1.02rem}
.kb-prose p{margin:0 0 1rem}
.kb-prose ul,.kb-prose ol{margin:0 0 1.15rem 1.2rem;padding:0}
.kb-prose li{margin:0 0 .4rem}
.kb-prose strong,.kb-prose b{color:var(--ink);font-weight:700}
.kb-prose a{color:var(--blue);text-decoration:underline;text-underline-offset:2px}
.kb-prose table{width:100%;border-collapse:collapse;margin:0 0 1.25rem;font-size:.95rem}
.kb-prose td,.kb-prose th{border:1px solid var(--line);padding:.45rem .6rem;text-align:left}
.kb-prose iframe{max-width:100%;border-radius:12px}
.kb-back{
  display:inline-flex;align-items:center;gap:.4rem;margin:1.25rem 0 0;
  color:var(--blue);text-decoration:none;font-weight:600;font-size:.95rem;
}
.kb-back:hover{text-decoration:underline}
.kb-related{margin-top:2rem}
.kb-related h2{font-size:1.05rem;color:var(--ink);margin:0 0 .65rem}
.kb-related .kb-list{display:grid;grid-template-columns:1fr;gap:0;border:1px solid var(--line);border-radius:14px;padding:.35rem 1rem;background:#fff}
@media (min-width:700px){
  .kb-related .kb-list{grid-template-columns:1fr 1fr;column-gap:1.25rem}
}

/* Page hero (inner) */
.page-hero{
  background:
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(11,107,203,.12), transparent 55%),
    linear-gradient(0deg,#f7fbff 0%,#fff 100%);
  padding:3.5rem 0 0;
  overflow:hidden;
}
.page-hero-grid{display:grid;gap:1.25rem;align-items:center}
.page-hero h1{
  font-size:clamp(1.8rem, 3.5vw, 2.75rem);color:var(--ink);font-weight:800;
  line-height:1.2;margin-bottom:.85rem;max-width:22ch;
}
.page-hero h1 .hero-title-break{
  display:block;
  white-space:nowrap;
}
.page-hero .lead{color:var(--muted);font-size:1.05rem;line-height:1.75;max-width:36rem;margin-bottom:1.15rem}
.hero-checks{
  display:grid;gap:.65rem .85rem;
  grid-template-columns:1fr;
  margin:0 0 1.35rem;
  padding:0;list-style:none;
  max-width:36rem;
}
@media (min-width:560px){
  .hero-checks{grid-template-columns:1fr 1fr}
}
.hero-checks li{
  display:flex;align-items:flex-start;gap:.55rem;
  font-family:"Inter",system-ui,sans-serif;
  font-size:.98rem;font-weight:500;color:var(--ink);line-height:1.4;
}
.hero-checks .check-ico{
  flex:0 0 auto;
  width:1.15rem;height:1.15rem;
  margin-top:.1rem;
  color:var(--blue,#0b6bcb);
}
.page-hero .hero-actions{margin-bottom:2rem}
.hero-visual{
  display:flex;align-items:center;justify-content:center;
  margin:0;
  line-height:0;
  width:100%;
}
.hero-visual img{
  width:100%;max-width:560px;height:auto;display:block;
  margin:0;vertical-align:bottom;
}
@media (min-width:900px){
  .page-hero{padding:3.25rem 0 0.75rem}
  .page-hero-grid{grid-template-columns:1fr 1.05fr;gap:1.75rem;align-items:center}
  .page-hero .hero-actions{margin-bottom:1.5rem}
  .hero-visual{justify-content:flex-end}
  .hero-visual img{max-width:620px}
}

/* Hosting product page: hero then pricing (less top padding) */
.page-hero + .pricing1{padding-top:2.5rem}

/* CTA */
.cta{
  background:linear-gradient(135deg,#0a2540 0%, #0d4f9c 100%);
  padding:3.5rem 0;color:#fff;text-align:center;
}
.cta h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.75rem}
.cta p{color:rgba(255,255,255,.8);max-width:36rem;margin:0 auto 1.5rem;font-size:1.05rem}
.cta-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:.75rem}


/* Language switcher */
.lang-switch{display:inline-flex;align-items:center;gap:.35rem;font-family:"Inter",system-ui,sans-serif;font-size:.9rem;font-weight:600}
.lang-switch-header{margin-right:.15rem}
.lang-switch .lang-opt{color:var(--muted);text-decoration:none;padding:.15rem .2rem;border-radius:6px}
.lang-switch .lang-opt:hover{color:var(--ink)}
.lang-switch .lang-opt.is-active{color:var(--brand,#0b6bcb)}
.lang-switch .lang-sep{color:#cbd5e1;user-select:none}
.lang-switch-footer{color:rgba(255,255,255,.7)}
.lang-switch-footer .lang-switch-label{margin-right:.35rem;opacity:.85;font-weight:500}
.lang-switch-footer .lang-opt{color:rgba(255,255,255,.7)}
.lang-switch-footer .lang-opt:hover,.lang-switch-footer .lang-opt.is-active{color:#fff}
.footer-bottom-right{display:flex;flex-wrap:wrap;align-items:center;gap:.85rem 1.25rem;justify-content:flex-end}
.nav-mobile .lang-switch{margin:.35rem 0 .75rem}

/* Footer */
.site-footer{
  background:#0a2540;color:rgba(255,255,255,.78);padding:3.5rem 0 1.5rem;
}
.footer-grid{
  display:grid;gap:2rem;
  grid-template-columns:1fr;
  margin-bottom:2.5rem;
}
@media (min-width:700px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr}}
.footer-brand img{height:34px;width:auto;margin-bottom:1rem;filter:brightness(0) invert(1)}
.footer-brand p{line-height:1.7;font-size:.95rem;max-width:28rem}
.site-footer h4{color:#fff;font-size:1rem;margin-bottom:1rem}
.site-footer a{color:rgba(255,255,255,.78)}
.site-footer a:hover{color:#fff}
.footer-links{display:grid;gap:.55rem}
.footer-contact{display:grid;gap:.65rem;font-size:.95rem}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:1.25rem;display:flex;flex-wrap:wrap;gap:.75rem;
  justify-content:space-between;font-size:.875rem;color:rgba(255,255,255,.55);
}

/* 404 */
.notfound{padding:6rem 0;text-align:center}
.notfound h1{font-size:4rem;color:var(--ink);margin-bottom:.5rem}
.notfound p{color:var(--muted);margin-bottom:1.5rem}

/* ===== Pricing-1 style (Lite / Pro toggle) ===== */
.pricing1{
  background:linear-gradient(180deg,#eef4fb 0%,#f7fafc 40%,#fff 100%);
  padding:4rem 0 3.5rem;
}
.pricing1-head{text-align:center;max-width:42rem;margin:0 auto 2rem}
.pricing1-head h1,
.pricing1-head h2{
  font-size:clamp(2rem,4vw,3.2rem);color:var(--ink);font-weight:800;
  line-height:1.15;margin-bottom:.85rem;
}
.pricing1-head p{color:var(--muted);font-size:1.1rem;line-height:1.7}

.plan-toggle{
  display:inline-flex;align-items:center;justify-content:center;gap:.85rem;
  margin:1.5rem auto 0;flex-wrap:wrap;
}
.plan-toggle .label{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:1.05rem;font-weight:700;color:#64748b;transition:.2s;
}
.plan-toggle .label.is-active{color:var(--ink)}
.plan-toggle .label .hint{
  display:none;margin-left:.15rem;color:var(--blue);font-weight:800;font-size:.85rem;
}
@media(min-width:520px){.plan-toggle .label .hint{display:inline}}
.panel-ico{
  width:1.35rem;height:1.35rem;
  display:inline-block;object-fit:contain;flex-shrink:0;
  vertical-align:middle;
}
.panel-ico-cpanel{
  width:3.1rem;height:1.15rem;
  filter:none;
}
.plan-toggle .panel-ico{opacity:.75;transition:opacity .2s}
.plan-toggle .label.is-active .panel-ico,
body.plan-pro .plan-toggle .label-pro .panel-ico,
body:not(.plan-pro) .plan-toggle .label-lite .panel-ico{opacity:1}
.plan-toggle .panel-ico-cpanel{opacity:.55}
body.plan-pro .plan-toggle .label-pro .panel-ico-cpanel{opacity:1}

.switch{
  position:relative;width:60px;height:34px;flex-shrink:0;
}
.switch input{opacity:0;width:0;height:0}
.switch .slider{
  position:absolute;inset:0;cursor:pointer;background:var(--blue);
  border-radius:999px;transition:.25s;
}
.switch .slider::before{
  content:"";position:absolute;height:26px;width:26px;left:4px;top:4px;
  background:#fff;border-radius:50%;transition:.25s;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.switch input:checked + .slider::before{transform:translateX(26px)}

.p1-grid{
  display:grid;gap:1.25rem;align-items:stretch;
  grid-template-columns:1fr;
  margin-top:2.5rem;
}
@media(min-width:760px){.p1-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1060px){.p1-grid{grid-template-columns:repeat(3,1fr);gap:1.35rem}}
.p1-grid.cols-2{max-width:820px;margin-left:auto;margin-right:auto}
@media(min-width:1060px){.p1-grid.cols-2{grid-template-columns:repeat(2,1fr)}}

/* ===== Pricing-2 style (4-column cloud cards) ===== */
.pricing2{
  background:linear-gradient(180deg,#eef4fb 0%,#f7fafc 40%,#fff 100%);
  padding:4rem 0 3.5rem;
}
.pricing2 .pricing1-head{text-align:center;max-width:46rem;margin:0 auto 2rem}
.p2-grid{
  display:grid;gap:1.15rem;align-items:stretch;
  grid-template-columns:1fr;
  margin-top:2.25rem;
}
@media(min-width:760px){.p2-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1100px){.p2-grid{grid-template-columns:repeat(4,1fr);gap:1rem}}
.p2-card{
  position:relative;
  background:#fff;border:2px solid #e5e7eb;border-radius:14px;
  padding:1.65rem 1.35rem 1.45rem;
  display:flex;flex-direction:column;height:100%;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.p2-card:hover{
  border-color:#c7d2fe;
  box-shadow:0 14px 34px rgba(33,22,76,.08);
  transform:translateY(-2px);
}
.p2-card.featured{
  border-color:var(--blue,#0b6bcb);
  box-shadow:0 16px 40px rgba(11,107,203,.14);
}
.p2-badge{
  position:absolute;top:-12px;right:1rem;
  background:#facc15;color:#181d27;
  font-size:.78rem;font-weight:800;
  padding:.35rem .7rem;border-radius:999px;white-space:nowrap;
}
.p2-card-title{
  display:block;
  font-family:"Figtree",sans-serif;
  font-size:clamp(1.05rem,1.8vw,1.25rem);font-weight:700;color:var(--ink);
  margin-bottom:1rem;line-height:1.3;
}
.p2-price-head{
  border-bottom:1px solid #e5e7eb;
  padding-bottom:1.1rem;margin-bottom:1.1rem;
}
.p2-price-line{
  display:flex;align-items:flex-end;flex-wrap:wrap;gap:.1rem .25rem;
}
.p2-currency{font-size:1.35rem;font-weight:800;color:var(--ink);line-height:1}
.p2-amount{
  font-size:clamp(2rem,3.2vw,2.55rem);font-weight:800;color:var(--ink);line-height:.95;
  letter-spacing:-0.02em;
}
.p2-period{font-size:1.05rem;font-weight:600;color:#64748b;margin-bottom:.15rem}
.p2-orig{
  color:#94a3b8;text-decoration:line-through;font-size:.88rem;margin-top:.35rem;
}
.p2-save{
  display:inline-flex;margin-top:.65rem;background:#fde68a;color:var(--ink);
  font-size:.8rem;font-weight:800;padding:.35rem .7rem;border-radius:999px;
}
.p2-desc{
  color:var(--muted);font-size:.92rem;line-height:1.55;margin-top:.75rem;
}
.p2-features{
  display:grid;gap:.45rem;margin:0 0 1.25rem;padding:0 0 0 .15rem;
  list-style:none;flex:1;
}
.p2-features li{
  display:grid;grid-template-columns:16px 1fr;gap:.45rem;align-items:start;
  font-size:.92rem;font-weight:600;color:#334155;line-height:1.45;
}
.p2-features li::before{content:"✓";color:#16a34a;font-weight:800;font-size:.85rem}
.p2-card .btn{width:100%;margin-top:auto;justify-content:center}
.page-hero + .pricing2{padding-top:2.5rem}

.p1-card{
  position:relative;background:#fff;border:2px solid var(--line);
  border-radius:18px;padding:1.75rem 1.5rem 1.6rem;
  display:flex;flex-direction:column;height:100%;
}
.p1-card.featured{
  border-color:var(--blue);
  box-shadow:0 16px 40px rgba(11,107,203,.16);
}
.p1-featured-badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--blue);color:#fff;font-size:.8rem;font-weight:800;
  padding:.45rem 1.1rem;border-radius:999px;white-space:nowrap;
}
.p1-card-title{font-size:1.35rem;font-weight:800;color:var(--ink);margin-bottom:1rem;display:block}
.p1-price-wrap{border-bottom:1px solid #e2e8f0;padding-bottom:1.1rem;margin-bottom:1.15rem}
.p1-price-line{display:flex;align-items:flex-end;flex-wrap:wrap;gap:.15rem .35rem}
.p1-currency{font-size:1.5rem;font-weight:800;color:var(--ink);line-height:1}
.p1-amount{font-size:clamp(2.4rem,4vw,3.2rem);font-weight:800;color:var(--ink);line-height:.95}
.p1-period{font-size:1.15rem;font-weight:700;color:#64748b;margin-bottom:.2rem}
.p1-save{
  display:inline-flex;margin-top:.65rem;background:#fde68a;color:var(--ink);
  font-size:.8rem;font-weight:800;padding:.35rem .7rem;border-radius:999px;
}
.p1-orig{color:#94a3b8;text-decoration:line-through;font-size:.9rem;margin-top:.35rem}
.p1-desc{color:var(--muted);font-size:.95rem;margin-top:.75rem;line-height:1.55}
.p1-features{display:grid;gap:.55rem;margin-bottom:1.35rem;flex:1}
.p1-features li{
  display:grid;grid-template-columns:18px 1fr;gap:.5rem;
  font-size:.95rem;color:#334155;font-weight:600;
}
.p1-features li::before{content:"✓";color:#16a34a;font-weight:800}
.p1-card .btn{width:100%;margin-top:auto}
.ssl-brand-logo{
  display:flex;align-items:center;justify-content:flex-start;
  min-height:2.6rem;margin-bottom:.85rem;
}
.ssl-brand-logo img{
  display:block;width:auto;object-fit:contain;object-position:left center;
}
.ssl-brand-logo .ssl-logo-digicert{
  height:2rem;max-width:9rem;
}
.ssl-brand-logo .ssl-logo-sectigo{
  /* Sectigo SVG has more padding; scale up to match DigiCert visual weight */
  height:2.55rem;max-width:11rem;
}

/* Toggle visibility: Lite/Storage = price2 (default), Pro/Fully = price1 */
.p1-variant.price1,.p2-variant.price1{display:none}
body.plan-pro .p1-variant.price1,body.plan-pro .p2-variant.price1{display:block}
body.plan-pro .p1-variant.price2,body.plan-pro .p2-variant.price2{display:none}
body.plan-pro .plan-toggle .label-lite{color:#64748b}
body.plan-pro .plan-toggle .label-pro{color:var(--ink)}
body:not(.plan-pro) .plan-toggle .label-lite{color:var(--ink)}
body:not(.plan-pro) .plan-toggle .label-pro{color:#64748b}

/* Comparison table */
.compare{padding:4rem 0}
.compare-head{text-align:center;max-width:40rem;margin:0 auto 2rem}
.compare-head h2{font-size:clamp(1.6rem,3vw,2.4rem);color:var(--ink);font-weight:800;margin-bottom:.6rem}
.compare-head p{color:var(--muted)}
.comp-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);border-radius:16px;background:#fff}
.comp-table{width:100%;border-collapse:collapse;min-width:640px}
.comp-table th,.comp-table td{
  padding:1rem 1.1rem;border-bottom:1px solid #e8eef5;text-align:center;
  font-size:.95rem;color:#475569;
}
.comp-table thead th{
  color:var(--ink);font-weight:800;font-size:1.05rem;
  background:#f8fbff;border-bottom:2px solid #dbe7f5;
}
.comp-table tbody th{
  text-align:left;color:var(--ink);font-weight:700;width:28%;
}
.comp-table tr:last-child th,.comp-table tr:last-child td{border-bottom:0}
.comp-order-row th,.comp-order-row td{
  border-bottom:0;
  padding-top:1.15rem;
  padding-bottom:1.15rem;
  background:#f8fbff;
  vertical-align:middle;
}
.comp-order-row th{font-weight:800;color:var(--ink)}
.btn-comp-order{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:5.5rem;padding:.55rem 1rem;font-size:.9rem;
  white-space:nowrap;
}
.comp-yes{color:#16a34a;font-weight:800}
.comp-no{color:#cbd5e1;font-weight:700}

/* Spec / order table (dedicated server rows) */
.comp-table.spec-table{min-width:760px}
.comp-table.spec-table thead th{text-align:left}
.comp-table.spec-table td{text-align:left;vertical-align:middle}
.comp-table.spec-table tbody th{width:34%}
.comp-table.spec-table .price-old{margin-bottom:.15rem}
.comp-table.spec-table .price-now{font-size:1.15rem;margin-bottom:0;color:#16a34a}
.comp-table.spec-table .btn{width:auto;display:inline-flex}
.comp-table.domain-table{min-width:720px}
.comp-table.domain-table tbody th{width:12%;white-space:nowrap;font-weight:800}
.comp-table.domain-table td:nth-child(2){width:40%}
.comp-table.domain-table td:nth-child(n+3){white-space:nowrap;font-weight:700;color:var(--ink)}
.domain-req{margin:0;padding-left:1.1rem;color:#475569}
.domain-req li{margin:.2rem 0}
.comp-check{
  display:inline-flex;align-items:center;justify-content:center;
  width:1.35rem;height:1.35rem;vertical-align:middle;
}
.comp-check svg{width:100%;height:100%;display:block}

.comp-note{text-align:center;color:var(--muted);font-size:.9rem;margin-top:1rem}
.feat-label{
  display:inline-flex;align-items:center;gap:.4rem;flex-wrap:wrap;
}
.feat-info{
  position:relative;
  width:1.15rem;height:1.15rem;padding:0;border:0;border-radius:50%;
  background:#dbeafe;color:#1d4ed8;font-size:.72rem;font-weight:800;
  line-height:1;cursor:pointer;flex:0 0 auto;
  font-family:"Inter",system-ui,sans-serif;
}
.feat-info:hover,.feat-info.is-open{background:#0b6bcb;color:#fff}
.feat-tip{
  display:none;position:absolute;z-index:40;left:0;top:calc(100% + 8px);
  width:min(280px,70vw);padding:.75rem .85rem;border-radius:12px;
  background:#0f172a;color:#f8fafc;font-size:.82rem;font-weight:500;
  line-height:1.55;text-align:left;box-shadow:0 12px 30px rgba(15,23,42,.28);
}
.feat-tip::before{
  content:"";position:absolute;left:12px;top:-6px;
  border-left:6px solid transparent;border-right:6px solid transparent;
  border-bottom:6px solid #0f172a;
}
.feat-info.is-open .feat-tip{display:block}
@media(max-width:700px){
  .feat-tip{left:auto;right:0}
  .feat-tip::before{left:auto;right:12px}
}


.lite-pro-diff{
  display:grid;gap:1.25rem;margin-top:2rem;
}
@media(min-width:800px){.lite-pro-diff{grid-template-columns:1fr 1fr}}
.diff-card{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:1.5rem;
}
.diff-card h3{
  display:flex;align-items:center;gap:.55rem;
  color:var(--ink);font-size:1.2rem;margin-bottom:.6rem;
}
.diff-card h3 .panel-ico{width:1.5rem;height:1.5rem}
.diff-card h3 .panel-ico-cpanel{width:3.4rem;height:1.25rem}
.diff-card p{color:var(--muted);line-height:1.7;font-size:.98rem}
