/* NVMe Hosting Page Specific CSS */
:root {
 --navy: #07133d;
 --muted: #6b7590;
 --line: #e5eaf3;
 --blue: #1264f4;
 --green: #009b78;
 --purple: #6d35e8;
 --orange: #ff5b16;
 --bg: #fbfcff;
}

.pricing-section {
 padding: 44px 20px 70px;
 background: radial-gradient(circle at 50% 0%, rgba(18,100,244,0.07), transparent 34%), linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.pricing-container {
 width: min(100%, 1180px);
 margin: 0 auto;
}

.pricing-eyebrow {
 margin: 0 0 10px;
 text-align: center;
 color: var(--blue);
 font-size: 14px;
 font-weight: 800;
 letter-spacing: 7px;
 text-transform: uppercase;
}
.pricing-title {
 margin: 0 0 10px;
 text-align: center;
 color: var(--navy);
 font-size: clamp(28px, 3vw, 38px);
 line-height: 1.15;
 font-weight: 800;
}
.pricing-subtitle {
 margin: 0 0 22px;
 text-align: center;
 color: var(--muted);
 font-size: 14px;
 font-weight: 500;
}

.billing-row {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 14px;
 flex-wrap: wrap;
 margin-bottom: 44px;
}
.billing-toggle {
 display: grid;
 grid-template-columns: 1fr 1fr;
 width: min(100%, 330px);
 padding: 4px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;
 box-shadow: 0 9px 24px rgba(7,19,61,0.12);
}
.billing-option {
 min-height: 42px;
 border: 0;
 border-radius: 999px;
 background: transparent;
 color: var(--navy);
 font: inherit;
 font-size: 16px;
 font-weight: 800;
 cursor: pointer;
 transition: 0.2s;
}
.billing-option.is-active {
 color: #fff;
 background: linear-gradient(135deg, #11b990, #008f70);
 box-shadow: 0 7px 16px rgba(0,155,120,0.28);
}
.save-pill {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 min-height: 42px;
 padding: 0 18px;
 border: 1px solid #ccefe8;
 border-radius: 999px;
 background: #effdfa;
 color: var(--green);
 font-size: 17px;
 font-weight: 800;
 white-space: nowrap;
}
.save-pill svg {
 width: 20px;
 height: 20px;
 stroke-width: 2.5;
}

.save-coupon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #ccefe8;
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  margin-bottom: 15px;
  width: 65%;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.save-coupon--blue {
  border-color: #c8dff8;
  color: var(--blue);
}
.save-coupon--purple {
  border-color: #d8cff5;
  color: var(--purple);
}
.save-coupon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
}

.pricing-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 28px;
 align-items: stretch;
}

.price-card {
 position: relative;
 display: flex;
 flex-direction: column;
 min-height: 590px;
 padding: 32px 30px 28px;
 border: 1px solid var(--line);
 border-top: 5px solid var(--accent);
 border-radius: 12px;
 background: #fff;
 box-shadow: 0 22px 55px rgba(7,19,61,0.12);
}
.price-card--featured {
 border-color: rgba(0,155,120,0.45);
 box-shadow: 0 28px 70px rgba(0,155,120,0.16);
}

.recommended-badge {
 position: absolute;
 top: -24px;
 left: 50%;
 display: inline-flex;
 align-items: center;
 min-height: 40px;
 padding: 0 28px;
 border-radius: 999px;
 background: linear-gradient(135deg, #12ad8b, #00936f);
 color: #fff;
 font-size: 15px;
 font-weight: 900;
 transform: translateX(-50%);
 box-shadow: 0 12px 22px rgba(0,155,120,0.25);
 white-space: nowrap;
}

.card-head {
 display: grid;
 grid-template-columns: 74px 1fr;
 gap: 18px;
 align-items: center;
 margin-bottom: 15px;
}
.plan-icon {
 display: grid;
 place-items: center;
 width: 70px;
 height: 70px;
 border-radius: 18px;
 background: var(--accent-soft);
 color: var(--accent);
}
.plan-icon svg {
 width: 42px;
 height: 42px;
 stroke-width: 2.3;
}
.plan-name {
 margin: 0 0 6px;
 color: #07133d;
 font-size: 18px;
 font-weight: 800;
}
.plan-desc {
 margin: 0 0 22px;
 color: #526179;
 font-size: 15px;
 font-weight: 500;
}

.price-line {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 margin-bottom: 6px;
}
.offer-price {
 color: var(--plan-color, var(--accent));
 font-size: 31px;
 line-height: 1;
 font-weight: 900;
}
.period {
 margin-left: 4px;
 color: var(--navy);
 font-size: 15px;
 font-weight: 700;
}
.discount-badge {
 padding: 9px 15px;
 border-radius: 11px;
 background: #fff0e8;
 color: var(--orange);
 font-size: 16px;
 font-weight: 900;
}

.regular-price {
 display: flex;
 align-items: center;
 gap: 12px;
 min-height: 26px;
 margin-bottom: 14px;
 color: var(--muted);
 font-size: 15px;
 font-weight: 700;
}
.regular-price s {
 color: #667085;
 font-weight: 800;
 text-decoration-thickness: 2px;
}

.saving-pill {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 min-height: 34px;
 padding: 0 14px;
 border-radius: 10px;
 background: var(--accent-soft);
 color: var(--accent);
 font-size: 16px;
 font-weight: 900;
}
.saving-pill svg {
 width: 18px;
 height: 18px;
 fill: currentColor;
}

.card-divider {
 height: 1px;
 margin: 22px 0 20px;
 background: var(--line);
}

.feature-list {
 display: grid;
 gap: 15px;
 margin: 0 0 28px;
 padding: 0;
 list-style: none;
}
.feature-list li {
 display: flex;
 align-items: center;
 gap: 14px;
 color: var(--navy);
 font-size: 14px;
 font-weight: 600;
}
.feature-list svg {
 flex: 0 0 22px;
 width: 22px;
 height: 22px;
 color: var(--accent);
 stroke-width: 2.4;
}

.order-btn {
 display: inline-flex;
 justify-content: center;
 align-items: center;
 min-height: 52px;
 margin-top: auto;
 border: 2px solid var(--accent);
 border-radius: 8px;
 background: #fff;
 color: var(--accent);
 font-size: 18px;
 font-weight: 900;
 text-decoration: none;
 transition: 0.2s;
}
.order-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 12px 24px rgba(7,19,61,0.12);
}
.price-card--featured .order-btn {
 border-color: transparent;
 background: linear-gradient(135deg, #11b990, #008d70);
 color: #fff;
 box-shadow: 0 12px 22px rgba(0,155,120,0.22);
}

.starter { --accent: var(--blue); --accent-soft: #edf5ff; }
.business { --accent: var(--green); --accent-soft: #eafaf6; }
.pro { --accent: var(--purple); --accent-soft: #f3efff; }

@media (max-width: 1050px) {
 .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 560px) {
 .pricing-section { padding: 34px 14px 48px; }
 .billing-toggle { width: 100%; }
 .billing-option { font-size: 16px; }
 .price-card { min-height: auto; padding: 28px 22px 24px; }
 .card-head { grid-template-columns: 60px 1fr; gap: 14px; }
 .plan-icon { width: 58px; height: 58px; border-radius: 15px; }
 .plan-icon svg { width: 34px; height: 34px; }
 .plan-name { font-size: 21px; }
 .price-line { align-items: flex-start; flex-direction: column; }
 .feature-list li { font-size: 16px; }
}

/* ===========================================
 CloudLinux LVE Compare Table
 =========================================== */
.lve-compare-section {
 padding: 30px 20px;
 background:
 radial-gradient(circle at 50% 0%, rgba(18, 100, 244, 0.06), transparent 34%),
 linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
 font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 color: #07133d;
}

.lve-compare-wrap {
 width: min(100%, 1180px);
 margin: 0 auto;
}

.lve-compare-title {
 margin: 0 0 28px;
 text-align: center;
 color: #07133d;
 font-size: clamp(24px, 2.6vw, 34px);
 line-height: 1.2;
 font-weight: 900;
 letter-spacing: 0;
}

.lve-compare-table-wrap {
 overflow: visible;
}

.lve-compare-table {
 width: 100%;
 border-collapse: separate;
 border-spacing: 0;
 overflow: hidden;
 border: 1px solid #e6ebf3;
 border-radius: 10px;
 background: #ffffff;
 box-shadow: 0 18px 48px rgba(7, 19, 61, 0.08);
}

.lve-compare-table th,
.lve-compare-table td {
 position: relative;
 padding: 18px 22px;
 border-right: 1px solid #e8edf5;
 border-bottom: 1px solid #edf1f7;
 text-align: center;
 vertical-align: middle;
}

.lve-compare-table th:last-child,
.lve-compare-table td:last-child {
 border-right: 0;
}

.lve-compare-table tbody tr:last-child td {
 border-bottom: 0;
}

.lve-compare-table thead th {
 background: #ffffff;
 color: #07133d;
 font-size: 15px;
 font-weight: 900;
}

.lve-feature-head,
.lve-feature-cell {
 width: 31%;
 text-align: left !important;
}

.lve-feature-head {
 color: #07133d;
}

.lve-plan {
 min-width: 150px;
}

.lve-plan--student {
 color: #1264f4 !important;
}

.lve-plan--basic {
 color: #6d35e8 !important;
}

.lve-plan--premium {
 color: #ff6b18 !important;
}

.lve-recommended {
 position: absolute;
 top: -18px;
 left: 50%;
 z-index: 2;
 display: inline-flex;
 min-height: 24px;
 align-items: center;
 justify-content: center;
 padding: 0 13px;
 border-radius: 6px 6px 0 0;
 background: #ff6b18;
 color: #ffffff;
 font-size: 9px;
 font-weight: 900;
 letter-spacing: 0.4px;
 text-transform: uppercase;
 transform: translateX(-50%);
 white-space: nowrap;
}

.lve-feature {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 color: #07133d;
 font-size: 14px;
 font-weight: 800;
}

.lve-feature-icon {
 display: inline-grid;
 place-items: center;
 width: 25px;
 height: 25px;
 border-radius: 8px;
 background: #edf5ff;
 color: #1264f4;
}

.lve-feature-icon svg {
 width: 17px;
 height: 17px;
 stroke-width: 2.3;
}

.lve-value {
 color: #13204a;
 font-size: 14px;
 font-weight: 700;
}

.lve-compare-table tbody tr:nth-child(even) td {
 background: #fcfdff;
}

.lve-compare-table tbody tr:hover td {
 background: #f6fbff;
}

.lve-note {
 margin: 22px 0 0;
 text-align: center;
 color: #1264f4;
 font-size: 13px;
 font-weight: 900;
 letter-spacing: 2.6px;
 text-transform: uppercase;
}

/* ===========================================
 NVMe Features Page Styles
 =========================================== */
.nvme-feature-page {
 --navy: #07133d;
 --navy-2: #0b1c4f;
 --blue: #1264f4;
 --green: #00a77c;
 --orange: #ff6b18;
 --purple: #6d35e8;
 --cyan: #18b7e8;
 --muted: #64708a;
 --line: #e7edf6;
 --soft: #f7faff;
 --white: #ffffff;
 font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 color: var(--navy);
 background: var(--white);
}

.nvme-section {
 padding: 50px 20px;
}

.nvme-section--soft {
 background:
 radial-gradient(circle at 10% 0%, rgba(18, 100, 244, 0.06), transparent 28%),
 linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}

.nvme-container {
 width: min(100%, 1180px);
 margin: 0 auto;
}

.nvme-section-title {
 margin: 0 0 50px;
 text-align: center;
 color: var(--navy);
 font-size: clamp(28px, 3vw, 40px);
 line-height: 1.16;
 font-weight: 900;
 letter-spacing: 0;
}

.performance-grid {
 display: grid;
 grid-template-columns: repeat(6, minmax(0, 1fr));
 gap: 24px;
}

.performance-card {
 text-align: center;
}

.performance-icon {
 display: grid;
 place-items: center;
 width: 58px;
 height: 58px;
 margin: 0 auto 14px;
 border-radius: 18px;
 background: #eef5ff;
 color: var(--blue);
}

.performance-icon--orange {
 background: #fff4ec;
 color: var(--orange);
}

.performance-icon--green {
 background: #ebfbf6;
 color: var(--green);
}

.performance-icon--cyan {
 background: #eefbff;
 color: var(--cyan);
}

.performance-icon svg {
 width: 30px;
 height: 30px;
 stroke-width: 2.2;
}

.cp-text-icon {
 font-size: 28px;
 font-weight: 900;
}

.performance-card h3 {
 margin: 0 0 8px;
 color: var(--navy);
 font-size: 15px;
 line-height: 1.25;
 font-weight: 900;
}

.performance-card p {
 margin: 0;
 color: var(--muted);
 font-size: 13px;
 line-height: 1.65;
 font-weight: 500;
}

.two-column {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
 gap: 64px;
 align-items: center;
}

.app-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 10px;
}

.app-tile {
 display: grid;
 place-items: center;
 min-height: 132px;
 padding: 18px;
 border: 1px solid var(--line);
 border-radius: 10px;
 background: #ffffff;
 box-shadow: 0 14px 34px rgba(7, 19, 61, 0.06);
}

.app-logo {
 display: grid;
 place-items: center;
 width: 62px;
 height: 62px;
 margin-bottom: 12px;
 border-radius: 18px;
 color: #ffffff;
 font-size: 30px;
 font-weight: 900;
}

.app-logo--wp {
 background: #21759b;
}

.app-logo--drupal {
 background: #0678be;
}

.app-logo--joomla {
 background: linear-gradient(135deg, #7ac142, #f9a51a 50%, #1a75bb);
}

.app-logo--prestashop {
 background: #91c84a;
}

.app-logo--magento {
 background: #f26322;
}

.app-logo--woo {
 background: #96588a;
}

.app-tile span:last-child {
 color: var(--navy);
 font-size: 14px;
 font-weight: 900;
}

.content-block h2 {
 margin: 0 0 16px;
 color: var(--navy);
 font-size: clamp(28px, 3vw, 42px);
 line-height: 1.12;
 font-weight: 800;
 letter-spacing: 0;
}

.content-block p {
 margin: 0 0 22px;
 color: var(--muted);
 font-size: 16px;
 line-height: 1.8;
 font-weight: 500;
}

.content-block strong {
 color: var(--navy);
 font-weight: 900;
}

.nvme-speed-grid {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
 gap: 56px;
 align-items: center;
}

.nvme-speed-image img {
 display: block;
 width: 100%;
 height: auto;
 border-radius: 14px;
 box-shadow: 0 18px 45px rgba(7, 19, 61, 0.16);
}

.nvme-speed-content h2 {
 margin-bottom: 16px;
}

.nvme-speed-content p {
 margin-bottom: 14px;
}

.button-primary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 46px;
 padding: 0 22px;
 border-radius: 8px;
 background: linear-gradient(135deg, #12b98f, #009877);
 color: #ffffff;
 font-size: 14px;
 font-weight: 900;
 text-decoration: none;
 box-shadow: 0 12px 24px rgba(0, 155, 120, 0.22);
}

.speed-visual {
 padding: 26px;
 border: 1px solid var(--line);
 border-radius: 14px;
 background: #ffffff;
 box-shadow: 0 18px 45px rgba(7, 19, 61, 0.08);
}

.chart-card + .chart-card {
 margin-top: 24px;
}

.chart-title {
 margin: 0 0 14px;
 color: var(--navy);
 font-size: 14px;
 font-weight: 900;
 text-align: center;
}

.bar-row {
 display: grid;
 grid-template-columns: 120px 1fr;
 gap: 12px;
 align-items: center;
 margin-bottom: 9px;
}

.bar-label {
 color: var(--muted);
 font-size: 11px;
 font-weight: 700;
 text-align: right;
}

.bar-track {
 height: 14px;
 border-radius: 999px;
 background: #eef2f8;
 overflow: hidden;
}

.bar {
 height: 100%;
 border-radius: inherit;
}

.bar--blue {
 width: 96%;
 background: var(--blue);
}

.bar--yellow {
 width: 88%;
 background: #f4c430;
}

.bar--green {
 width: 76%;
 background: var(--green);
}

.bar--red {
 width: 64%;
 background: #e33d50;
}

.nvme-cta {
 padding: 0 20px 50px;
}

.cta-panel {
 position: relative;
 display: grid;
 grid-template-columns: 1.3fr auto 170px;
 gap: 28px;
 align-items: center;
 overflow: hidden;
 width: min(100%, 1180px);
 min-height: 174px;
 margin: 0 auto;
 padding: 34px 42px;
 border-radius: 14px;
 background:
 radial-gradient(circle at 88% 88%, rgba(255, 255, 255, 0.3), transparent 18%),
 linear-gradient(135deg, #061a4b, #073984 60%, #0d69c9);
 color: #ffffff;
 box-shadow: 0 24px 60px rgba(7, 19, 61, 0.2);
}

.cta-panel h2 {
 margin: 0 0 10px;
 color: #ffffff;
 font-size: clamp(26px, 3vw, 40px);
 line-height: 1.12;
 font-weight: 900;
}

.cta-panel p {
 margin: 0;
 color: rgba(255, 255, 255, 0.78);
 font-size: 15px;
 font-weight: 500;
}

.cta-actions {
 display: grid;
 gap: 12px;
}

.cta-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 min-width: 190px;
 min-height: 52px;
 border-radius: 8px;
 background: linear-gradient(135deg, #13bd91, #009c7a);
 color: #ffffff;
 font-size: 16px;
 font-weight: 900;
 text-decoration: none;
 box-shadow: 0 14px 28px rgba(0, 155, 120, 0.24);
}

.cta-guarantee {
 color: rgba(255, 255, 255, 0.82);
 font-size: 13px;
 font-weight: 800;
}

.rocket {
 position: relative;
 width: 124px;
 height: 124px;
 transform: rotate(-24deg);
}

.rocket::before {
 content: "";
 position: absolute;
 inset: 18px 42px;
 border-radius: 50% 50% 46% 46%;
 background: linear-gradient(180deg, #ffffff, #8dc4ff);
 box-shadow: inset 0 0 0 8px #2f7df7;
}

.rocket::after {
 content: "";
 position: absolute;
 left: 46px;
 bottom: 2px;
 width: 32px;
 height: 44px;
 border-radius: 50%;
 background: linear-gradient(180deg, #ffbc34, #ff5b16);
 filter: blur(0.2px);
}

@media (max-width: 980px) {
 .performance-grid {
   grid-template-columns: repeat(3, 1fr);
 }

 .two-column {
   grid-template-columns: 1fr;
   gap: 36px;
 }

 .nvme-speed-grid {
   grid-template-columns: 1fr;
   gap: 30px;
 }

 .cta-panel {
   grid-template-columns: 1fr;
   text-align: center;
 }

 .rocket {
   display: none;
 }
}

@media (max-width: 640px) {
 .nvme-section {
   padding: 48px 16px;
 }

 .performance-grid {
   grid-template-columns: repeat(2, 1fr);
   gap: 22px 16px;
 }

 .app-grid {
   grid-template-columns: repeat(2, 1fr);
 }

 .app-tile {
   min-height: 118px;
 }

 .bar-row {
   grid-template-columns: 88px 1fr;
 }
}

@media (max-width: 420px) {
 .performance-grid {
   grid-template-columns: 1fr;
 }

 .app-grid {
   grid-template-columns: 1fr;
 }
}

@media (max-width: 820px) {
 .lve-compare-section {
 padding: 44px 14px;
 }

 .lve-compare-table,
 .lve-compare-table thead,
 .lve-compare-table tbody,
 .lve-compare-table tr,
 .lve-compare-table th,
 .lve-compare-table td {
 display: block;
 }

 .lve-compare-table {
 border: 0;
 border-radius: 0;
 background: transparent;
 box-shadow: none;
 }

 .lve-compare-table thead {
 position: absolute;
 width: 1px;
 height: 1px;
 overflow: hidden;
 clip: rect(0 0 0 0);
 white-space: nowrap;
 }

 .lve-compare-table tbody {
 display: grid;
 gap: 14px;
 }

 .lve-compare-table tr {
 overflow: hidden;
 border: 1px solid #e6ebf3;
 border-radius: 10px;
 background: #ffffff;
 box-shadow: 0 14px 34px rgba(7, 19, 61, 0.08);
 }

 .lve-compare-table th,
 .lve-compare-table td {
 display: grid;
 grid-template-columns: 1.1fr 1fr;
 gap: 16px;
 width: 100%;
 padding: 15px 16px;
 border-right: 0;
 text-align: left;
 }

 .lve-feature-cell {
 width: 100%;
 background: #f7fbff !important;
 }

 .lve-feature-cell::before {
 content: "Feature";
 color: #6b7590;
 font-size: 12px;
 font-weight: 900;
 letter-spacing: 0.8px;
 text-transform: uppercase;
 }

 .lve-value::before {
 content: attr(data-plan);
 color: #6b7590;
 font-size: 12px;
 font-weight: 900;
 letter-spacing: 0.8px;
 text-transform: uppercase;
 }

 .lve-value {
 display: grid;
 grid-template-columns: 1.1fr 1fr;
 gap: 16px;
 align-items: center;
 font-size: 14px;
 }

 .lve-recommended {
 position: static;
 width: max-content;
 margin-bottom: 4px;
 border-radius: 999px;
 transform: none;
 }
}

@media (max-width: 460px) {
 .lve-compare-table th,
 .lve-compare-table td,
 .lve-value {
 grid-template-columns: 1fr;
 gap: 8px;
 }

 .lve-feature {
 font-size: 13px;
 }
}
