/* Extracted from managed-wordpress-hosting.php style block 1 */
/* ================================================================
   PAGE-SPECIFIC: BREADCRUMB
   ================================================================ */
.ns-breadcrumb {
  background: rgba(0,0,0,.04);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ns-breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: #888;
}
.ns-breadcrumb a { color: #888; text-decoration: none; }
.ns-breadcrumb a:hover { color: var(--color-primary); }

/* ================================================================
   WP PLAN CARDS - equal height, button pinned to bottom
   ================================================================ */
.wp-plan-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(10, 26, 47, 0.12);
  border: 1px solid rgba(33, 117, 155, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.wp-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 70px -15px rgba(10, 26, 47, 0.22);
  border-color: rgba(33, 117, 155, 0.4);
}
.wp-plan-card-top {
  height: 6px;
  background: linear-gradient(90deg, #21759B, #00A0D2);
  width: 100%;
  flex-shrink: 0;
}
.wp-plan-location-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 26, 47, 0.88);
  padding: 7px 14px;
  border-radius: 0 0 30px 30px;
  border: 1px solid rgba(33, 117, 155, 0.25);
  border-top: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: absolute;
  top: -2px;
  right: 25px;
  z-index: 10;
}
.wp-plan-location-pill i { color: #00A0D2; font-size: 13px; }
.wp-plan-location-pill span { font-weight: 700; font-size: 11px; color: white; letter-spacing: 0.8px; }
/* Body grows to fill card, button stays at bottom */
.wp-plan-body {
  padding: 52px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wp-plan-body .wp-includes-chips { flex: 1; align-content: flex-start; }
/* Row wrapper for 4 equal-height cards */
.wp-plans-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.wp-plans-row > .wp-plan-col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media (max-width: 991px) {
  .wp-plans-row > .wp-plan-col { width: 50%; }
}
@media (max-width: 580px) {
  .wp-plans-row > .wp-plan-col { width: 100%; }
}

.wp-plan-icon-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.wp-plan-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(33,117,155,.1), rgba(0,160,210,.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(33,117,155,.15);
}
.wp-plan-icon-wrap i { color: #21759B; font-size: 26px; }
.wp-plan-name { font-size: 26px; font-weight: 800; color: #0A1A2F; margin: 0; line-height: 1.2; }
.wp-plan-type { color: #21759B; font-weight: 600; font-size: 13px; letter-spacing: 0.4px; margin: 4px 0 0; }

.wp-plan-price-row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 20px 0;
  border-top: 2px solid rgba(33,117,155,.08);
  border-bottom: 2px solid rgba(33,117,155,.08);
  margin-bottom: 22px;
}
.wp-plan-price-amount { font-size: 44px; font-weight: 900; color: #21759B; }
.wp-plan-price-period { font-size: 16px; color: #888; font-weight: 500; }

.wp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.wp-spec-box {
  background: rgba(10,26,47,.02);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(33,117,155,.08);
}
.wp-spec-label {
  color: #999;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 4px;
}
.wp-spec-value { font-size: 15px; font-weight: 700; color: #0A1A2F; }
.wp-spec-sub { font-size: 11px; color: #888; margin-top: 2px; display: block; }

.wp-includes-label { font-weight: 600; color: #333; margin-bottom: 12px; font-size: 14px; }
.wp-includes-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.wp-chip {
  background: rgba(33,117,155,.07);
  color: #21759B;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(33,117,155,.12);
}
.wp-chip i { margin-right: 4px; }

.wp-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(90deg, #21759B, #00A0D2);
  color: white; font-weight: 800; font-size: 14px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(33,117,155,.22);
}
.wp-order-btn:hover {
  background: white;
  color: #21759B;
  border-color: #21759B;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33,117,155,.25);
  text-decoration: none;
}

/* ================================================================
   WP FEATURE CARDS - white card style from business page
   ================================================================ */
.wp-feature-modern {
  background: white;
  border-radius: 28px;
  padding: 32px 25px;
  height: 100%;
  border: 1px solid rgba(33,117,155,.12);
  box-shadow: 0 12px 28px -10px rgba(10,26,47,.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wp-feature-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #21759B, #00A0D2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wp-feature-modern:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px -12px rgba(10,26,47,.2);
  border-color: rgba(33,117,155,.35);
}
.wp-feature-modern:hover::before { opacity: 1; }

.wp-feature-icon-wrap {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(33,117,155,.08), rgba(0,160,210,.08));
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(33,117,155,.15);
}
.wp-feature-icon-wrap i { color: #21759B; font-size: 32px; }

/* ================================================================
   PERFORMANCE STATS ROW (dark)
   ================================================================ */
.wp-stat-dark-row {
  background: linear-gradient(135deg, #0A1A2F 0%, #0F2A40 100%);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex; flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  border: 1px solid rgba(33,117,155,.15);
}
.wp-stat-item { text-align: center; }
.wp-stat-value { font-size: 36px; font-weight: 900; color: #00A0D2; display: block; line-height: 1.1; }
.wp-stat-label { color: rgba(255,255,255,.65); font-size: 13px; margin-top: 4px; display: block; }

/* ================================================================
   FAQ - dot style from business page
   ================================================================ */
.faq-item {
  border-left: 3px solid transparent;
  padding: 20px 20px 20px 24px;
  margin-bottom: 28px;
  border-radius: 0 16px 16px 0;
  transition: background 0.2s ease;
}
.faq-item:hover { background: rgba(33,117,155,.02); }
.faq-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #21759B;
  box-shadow: 0 0 8px rgba(33,117,155,.5);
  flex-shrink: 0;
  display: inline-block;
}
.faq-question { font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 0; }
.faq-answer { color: var(--text-secondary); line-height: 1.7; font-size: 15px; margin: 0; }
.faq-highlighted {
  background: rgba(33,117,155,.03);
  border-left-color: #21759B !important;
}
.faq-cta {
  border-radius: 24px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(33,117,155,.04), rgba(0,160,210,.01));
  border: 1px solid rgba(33,117,155,.12);
}
.faq-contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #21759B, #00A0D2);
  color: white; font-weight: 800; font-size: 15px;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 20px rgba(33,117,155,.25);
  transition: all 0.25s ease;
}
.faq-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(33,117,155,.35);
  color: white; text-decoration: none;
}

/* ================================================================
   WP DIVIDER
   ================================================================ */
.uh-divider--wp {
  display: flex; align-items: center; justify-content: center;
  margin: 45px 0 35px;
}
.uh-divider--wp .line {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, transparent, #21759B, #00A0D2);
  opacity: 0.5;
}
.uh-divider--wp .line.right {
  background: linear-gradient(90deg, #00A0D2, #21759B, transparent);
}
.uh-divider--wp .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #21759B, #00A0D2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 28px rgba(33,117,155,.55);
  border: 2px solid rgba(255,255,255,.25);
  margin: 0 16px;
  position: relative;
}
.uh-divider--wp .icon img {
  width: 34px; height: 34px;
  filter: brightness(0) invert(1);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
  .wp-specs-grid { grid-template-columns: 1fr 1fr; }
  .wp-stat-dark-row { flex-direction: column; align-items: center; }
  .wp-plan-card { margin-bottom: 24px; }
  .faq-cta { padding: 26px 20px; }
  .faq-contact-btn { width: 100%; justify-content: center; }
  .wp-feature-modern { margin-bottom: 20px; }
  /* Performance metric cards need breathing room on mobile */
  .wp-perf-col { margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .wp-specs-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   2026 MANAGED WORDPRESS SECTION REFRESH
   Scoped so the hero, plans, performance stack, and footer CTA stay intact.
   ================================================================ */
.wp-section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  border-radius:999px;
  background:#eaf8ff;
  color:#0A1A2F;
  border:1px solid rgba(0,160,210,.22);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.wp-section-kicker i{color:#00A0D2}
.wp-section-title{
  color:#0A1A2F;
  font-size:clamp(34px,4vw,48px);
  line-height:1.08;
  font-weight:800;
  margin:18px 0 14px;
}
.wp-section-title span{color:#00A0D2}
.wp-section-sub{
  color:#5f6c7d;
  font-size:18px;
  line-height:1.65;
  max-width:700px;
  margin:0 auto;
}
.wp-included-section{
  position:relative;
  overflow:hidden;
  padding:96px 0!important;
  background:
    radial-gradient(circle at 9% 16%, rgba(0,160,210,.14), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(33,117,155,.10), transparent 28%),
    linear-gradient(180deg,#f7fbff 0%,#ffffff 52%,#f3f7fb 100%)!important;
}
.wp-included-section::before{
  content:'';
  position:absolute;
  inset:auto -12% -36% auto;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(0,160,210,.08);
  filter:blur(70px);
  pointer-events:none;
}
.wp-included-shell{position:relative;z-index:2}
.wp-included-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:46px!important;
}
.wp-included-grid::before,
.wp-included-grid::after{display:none!important}
.wp-included-grid > [class*="col-"]{
  width:auto!important;
  float:none!important;
  padding:0!important;
  margin:0!important;
}
.wp-included-section .wp-feature-modern{
  min-height:0!important;
  height:100%!important;
  display:grid!important;
  grid-template-columns:62px 1fr;
  grid-template-areas:"icon title" "icon copy" "icon chips";
  align-items:center;
  column-gap:18px;
  padding:24px!important;
  border-radius:18px!important;
  background:#fff!important;
  border:1px solid rgba(10,26,47,.10)!important;
  box-shadow:0 18px 44px rgba(10,26,47,.08)!important;
  text-align:left!important;
}
.wp-included-section .wp-feature-modern::before{
  width:4px;
  height:100%;
  right:auto;
  bottom:0;
  background:linear-gradient(180deg,#21759B,#00A0D2);
  opacity:1;
}
.wp-included-section .wp-feature-icon-wrap{
  grid-area:icon;
  width:58px!important;
  height:58px!important;
  margin:0!important;
  border-radius:16px!important;
  background:linear-gradient(135deg,#e9f9ff,#d9f4ff)!important;
  box-shadow:none!important;
}
.wp-included-section .wp-feature-icon-wrap i{
  color:#00A0D2!important;
  font-size:23px!important;
}
.wp-included-section .wp-feature-modern h3{
  grid-area:title;
  margin:0 0 7px!important;
  color:#0A1A2F!important;
  text-align:left!important;
  font-size:19px!important;
  line-height:1.25!important;
}
.wp-included-section .wp-feature-modern p{
  grid-area:copy;
  margin:0 0 14px!important;
  color:#5f6c7d!important;
  text-align:left!important;
  font-size:14px!important;
}
.wp-included-section .wp-feature-modern > div:last-child{
  grid-area:chips;
  justify-content:flex-start!important;
}
.wp-manage-section{
  background:
    radial-gradient(circle at 92% 14%, rgba(0,160,210,.09), transparent 30%),
    #ffffff!important;
}
.wp-usecases-section{
  background:linear-gradient(180deg,#f4f8fc 0%,#ffffff 100%)!important;
}
.wp-roadmap-section{margin-top:0}
.wp-scope-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,120,120,.09), transparent 28%),
    linear-gradient(180deg,#ffffff 0%,#f7fbff 100%)!important;
}
.wp-scope-card{
  background:#fff;
  border:1px solid rgba(10,26,47,.10);
  border-radius:22px;
  padding:30px;
  height:100%;
  box-shadow:0 20px 52px rgba(10,26,47,.08);
}
.wp-scope-list{display:grid;gap:14px}
.wp-scope-item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  padding:16px;
  border-radius:14px;
  background:#fbfdff;
  border:1px solid rgba(10,26,47,.07);
}
.wp-scope-item i{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(220,38,38,.07);
  color:#dc2626;
}
.wp-scope-item strong{
  display:block;
  color:#0A1A2F;
  font-size:15px;
  margin-bottom:4px;
}
.wp-scope-item span{
  color:#5f6c7d;
  font-size:13px;
  line-height:1.55;
}
.wp-services-section{
  background:
    radial-gradient(circle at 88% 8%, rgba(0,160,210,.12), transparent 26%),
    linear-gradient(180deg,#07111f 0%,#0A1A2F 100%)!important;
  border-top:0!important;
}
.wp-services-section .wp-section-kicker{
  background:rgba(0,160,210,.14);
  border-color:rgba(0,160,210,.32);
  color:#fff;
}
.wp-services-section h3,
.wp-services-section p{color:#fff!important}
.wp-service-card{
  display:grid!important;
  grid-template-columns:52px 1fr 22px;
  align-items:start;
  gap:16px;
  min-height:132px;
  background:rgba(255,255,255,.06)!important;
  border:1px solid rgba(255,255,255,.10)!important;
  border-radius:16px!important;
  padding:22px!important;
  box-shadow:none!important;
}
.wp-service-card strong{color:#fff!important}
.wp-service-card span{color:rgba(255,255,255,.66)!important}
.wp-service-card .wp-service-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,160,210,.13);
  border:1px solid rgba(0,160,210,.24);
}
.wp-service-card .wp-service-arrow{
  color:rgba(255,255,255,.45);
  margin-top:4px;
}
.wp-services-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.wp-services-grid::before,
.wp-services-grid::after{
  display:none!important;
}
.wp-services-grid > [class*="col-"]{
  width:auto!important;
  float:none!important;
  padding:0!important;
  margin:0!important;
}
.wp-services-grid .wp-service-card{
  height:100%;
}
@media(max-width:991px){
  .wp-included-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wp-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
  .wp-included-section{padding:68px 0!important}
  .wp-included-grid{grid-template-columns:1fr}
  .wp-included-section .wp-feature-modern{
    grid-template-columns:1fr;
    grid-template-areas:"icon" "title" "copy" "chips";
    justify-items:center;
    text-align:center!important;
  }
  .wp-included-section .wp-feature-modern h3,
  .wp-included-section .wp-feature-modern p{text-align:center!important}
  .wp-included-section .wp-feature-modern > div:last-child{justify-content:center!important}
  .wp-service-card{grid-template-columns:48px 1fr}
  .wp-service-card .wp-service-arrow{display:none}
  .wp-services-grid{grid-template-columns:1fr}
}

