.hero--teenused{
  padding: 96px 0 72px;
}

.hero-image--teenused{
  width: min(560px, 100%);
}

.section-title{
  text-align: center;
  margin: 0 auto 26px;
  max-width: 60ch;
  color: rgba(0,149,143,.92);
}

.section-title--teenused{
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--text);
}

.section-title--teenused::before{
  content: "Hinnakiri";
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title--teenused::after{
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,149,143,.22), rgba(0,149,143,.95), rgba(0,149,143,.22));
}

.teenused-points{
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.teenused-points li{
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.teenused-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}

.teenused-lifecycle-image{
  width: min(560px, 100%);
  max-width: none;
  filter: none;
}

.feature--lifecycle .split-media{
  justify-content: center;
  place-items: center;
}

@media (min-width: 920px){
  .feature--lifecycle .split{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .feature--lifecycle .split-media{
    overflow: visible;
  }

  .teenused-lifecycle-image{
    transform: none;
  }
}

/* ── Service card list (main services overview page) ── */
.service-card-list{
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.service-card{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(11,18,32,.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 220ms, transform 220ms;
}

.service-card:hover{
  box-shadow: 0 8px 28px rgba(0,149,143,.13);
  transform: translateY(-3px);
}

.service-card-content{
  flex: 1 1 auto;
  min-width: 0;
}

.service-card-title{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 3px;
}

.service-card-meta{
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

.service-card-arrow{
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.1rem;
  transition: background 180ms, transform 220ms;
}

.service-card:hover .service-card-arrow{
  background: var(--brand);
  color: #fff;
  transform: translateX(3px);
}

/* ── Service detail page ── */
.service-detail-header{
  padding: 36px 0 28px;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(11,18,32,.07);
}

.service-back-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 150ms;
}

.service-back-link:hover{
  color: var(--brand);
}

.service-detail-title-row{
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-detail-title-row h1{
  margin: 0 0 4px;
}

.service-detail-meta{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-summary-icon--lg{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
}

.service-summary-icon--lg img{
  width: 36px;
  height: 36px;
}

.service-detail-body{
  padding: 40px 0 60px;
}

.service-detail-content{
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.service-detail-content p{
  margin: 0;
  line-height: 1.7;
}

.service-detail-cta{
  padding: 48px 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(11,18,32,.07);
}

.service-detail-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-detail-cta-inner p{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 600px){
  .service-detail-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-title-row h1{
    font-size: 1.5rem;
  }
}

.service-accordion{
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.service-panel{
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(11,18,32,.08);
  background: #fff;
  overflow: hidden;
  transition: border-color 220ms, box-shadow 220ms;
  scroll-margin-top: 88px;
}

.service-panel:hover{
  border-color: rgba(0,149,143,.25);
  box-shadow: 0 4px 20px rgba(0,149,143,.08);
}

.service-panel[open]{
  border-color: rgba(0,149,143,.3);
  box-shadow: 0 4px 24px rgba(0,149,143,.1);
}

.service-panel summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text);
  transition: background 180ms;
  border-left: 3px solid transparent;
  transition: background 180ms, border-color 180ms;
}

.service-panel[open] summary{
  background: rgba(0,149,143,.04);
  border-left-color: var(--brand);
  border-bottom: 1px solid rgba(11,18,32,.07);
}

.service-panel summary:hover{
  background: var(--bg-soft);
}

.service-panel summary::-webkit-details-marker{
  display: none;
}

.service-panel summary::after{
  content: "+";
  flex: 0 0 auto;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: background 180ms, transform 220ms;
}

.service-panel[open] summary::after{
  content: "−";
  background: var(--brand);
  color: #fff;
}

.service-summary-meta{
  display: none;
}

.service-summary-content > span:first-child{
  font-size: 1.1rem;
  font-weight: 700;
}

.service-summary-content{
  flex: 1 1 auto;
  min-width: 0;
}

.service-summary-icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--brand-soft);
  border: 1px solid rgba(0,149,143,.15);
}

.service-summary-icon img{
  width: 28px;
  height: 28px;
}

.service-panel-body{
  display: grid;
  gap: 20px;
  padding: 24px 24px 28px 90px;
}

.service-panel-body p{
  margin: 0;
  line-height: 1.7;
}

/* ── Pricing ── */
.service-pricing{
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid rgba(11,18,32,.07);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px){
  .service-pricing{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.service-pricing > *:not(.pricing-group){
  grid-column: 1 / -1;
}

.service-pricing h3{
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,149,143,.2);
}

.pricing-group{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(11,18,32,.07);
  overflow: hidden;
}

.pricing-group h4{
  margin: 0;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  background: var(--brand);
}

.price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(11,18,32,.06);
}

.price-row:last-child{
  border-bottom: none;
}

.price-subheader{
  padding: 5px 14px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  background: rgba(0,149,143,.06);
  border-top: 1px solid rgba(0,149,143,.12);
  border-bottom: 1px solid rgba(0,149,143,.12);
}

.price-row:nth-child(even){
  background: rgba(0,149,143,.03);
}

.price-row span{
  color: var(--muted);
  font-size: .93rem;
}

.price-row strong{
  color: var(--brand);
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Fira Code', monospace;
  font-size: .95rem;
}

.pricing-note{
  margin: 14px 0 0;
  font-size: .85rem;
  color: var(--muted);
  padding-left: 10px;
  border-left: 2px solid rgba(0,149,143,.3);
}

.service-pricing--plain,
.service-pricing--plans{
  grid-template-columns: 1fr;
}

/* ── Plan comparison (web hosting) ── */
.plan-compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plan-compare--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 560px){
  .plan-compare{
    grid-template-columns: 1fr;
  }
}

.plan-card{
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid rgba(11,18,32,.08);
  overflow: hidden;
}

.plan-card--premium{
  border-color: rgba(0,149,143,.3);
  box-shadow: 0 4px 20px rgba(0,149,143,.1);
}

.plan-card-head{
  background: var(--brand);
  color: #fff;
  padding: 18px 16px 14px;
  text-align: center;
}

.plan-card-name{
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .8;
  margin-bottom: 8px;
}

.plan-card-price{
  line-height: 1;
  letter-spacing: -.02em;
}

.plan-price-eur{
  font-size: .95rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.plan-price-int{
  font-size: 2.4rem;
  font-weight: 800;
}

.plan-price-dec{
  font-size: .85rem;
  font-weight: 700;
  vertical-align: super;
}

.plan-price-period{
  font-size: .8rem;
  font-weight: 500;
  opacity: .8;
}

.plan-price-annual{
  font-size: .78rem;
  opacity: .7;
  margin-top: 5px;
}

/* ── Plan spec list (VPS package comparison) ── */
.plan-spec-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-spec-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(11,18,32,.05);
  font-size: .87rem;
}

.plan-spec-list li:last-child{
  border-bottom: none;
}

.plan-spec-list span{
  color: var(--muted);
}

.plan-spec-list strong{
  color: var(--text);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  font-family: 'Fira Code', monospace;
  font-size: .88rem;
}

.plan-spec-list--wrap li{
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

.spec-tier-tag{
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(11,18,32,.06);
  border-radius: 999px;
  padding: 2px 8px;
  opacity: .75;
  font-family: inherit;
  letter-spacing: .02em;
}

.plan-spec-list--wrap strong{
  white-space: normal;
  text-align: left;
  font-size: .85rem;
  overflow-wrap: break-word;
  word-break: break-word;
  display: block;
}

/* ── Infra feature blocks ── */
.infra-features{
  display: grid;
  gap: 16px;
}

.infra-feature-title{
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.infra-features p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: .94rem;
}

.plan-feature-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  font-size: .85rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(11,18,32,.05);
  line-height: 1.4;
}

.pf:last-child{
  border-bottom: none;
}

.pf--bold{
  font-weight: 700;
  color: var(--text);
}

.pf--upsell-nudge{
  background: rgba(0,149,143,.055);
  border-top: 1px solid rgba(0,149,143,.12);
  border-bottom: 1px solid rgba(0,149,143,.12);
  padding: 7px 14px;
  font-size: .82rem;
}

.pf--upsell-nudge::before{
  content: none;
}

.pf--upsell-nudge a{
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.pf--upsell-nudge a:hover{
  text-decoration: underline;
}

.pf-note{
  font-weight: 400;
  color: var(--muted);
}

.pf::before{
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.pf--yes::before{
  content: "✓";
  background: rgba(0,149,143,.13);
  color: var(--brand);
  font-size: .7rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.pf--no::before{
  content: "✕";
  background: rgba(180,30,30,.08);
  color: rgba(180,30,30,.55);
  font-size: .65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pf--addon{
  color: var(--muted);
}

.pf--addon::before{
  content: "+";
  background: rgba(11,18,32,.07);
  color: rgba(11,18,32,.38);
  font-size: .8rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.pf--addon::after{
  content: "lisatav +7€";
  margin-left: auto;
  font-size: .76rem;
  color: var(--muted);
  opacity: .65;
  white-space: nowrap;
  font-style: italic;
}

.pricing-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li{
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
}

.pricing-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
}

/* ── X-tee page specifics ── */
.xtee-diagram-wrap{
  padding: 8px 0;
}

.xtee-diagram-img{
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
}

.xtee-explainer{
  border: 1.5px solid rgba(0,149,143,.22);
  border-radius: var(--radius);
  background: rgba(0,149,143,.04);
}

.xtee-explainer > summary{
  list-style: none;
  cursor: pointer;
  padding: 13px 18px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 160ms;
}

.xtee-explainer > summary::-webkit-details-marker{ display: none; }

.xtee-explainer > summary::after{
  content: "›";
  font-size: 1.3rem;
  font-weight: 300;
  opacity: .7;
  transition: transform 220ms;
  display: inline-block;
}

.xtee-explainer[open] > summary::after{
  transform: rotate(90deg);
}

.xtee-explainer-body{
  padding: 2px 18px 16px;
  display: grid;
  gap: 12px;
}

.xtee-explainer-body p{
  margin: 0;
  font-size: .93rem;
  line-height: 1.68;
  color: var(--muted);
}

/* Miks comparison */
.miks-compare{
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 600px){
  .miks-compare{
    grid-template-columns: 1fr 1fr;
  }
}

.miks-col{
  border-radius: var(--radius);
  overflow: hidden;
}

.miks-col--bad{
  border: 1px solid rgba(180,30,30,.14);
  background: rgba(180,30,30,.025);
}

.miks-col--good{
  border: 1px solid rgba(0,149,143,.22);
  background: rgba(0,149,143,.025);
}

.miks-col-head{
  padding: 9px 16px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.miks-col--bad .miks-col-head{
  background: rgba(180,30,30,.08);
  color: rgba(160,20,20,.8);
  border-bottom: 1px solid rgba(180,30,30,.12);
}

.miks-col--good .miks-col-head{
  background: rgba(0,149,143,.09);
  color: var(--brand);
  border-bottom: 1px solid rgba(0,149,143,.14);
}

.miks-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.miks-list li{
  padding: 9px 14px 9px 40px;
  position: relative;
  font-size: .88rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(11,18,32,.05);
}

.miks-list li:last-child{ border-bottom: none; }

.miks-col--bad .miks-list li{ color: rgba(50,50,60,.7); }

.miks-col--bad .miks-list li::before{
  content: "✕";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(180,30,30,.1);
  color: rgba(180,30,30,.65);
  font-size: .62rem;
  font-weight: 700;
  text-align: center;
  line-height: 18px;
}

.miks-col--good .miks-list li{ color: var(--muted); }

.miks-col--good .miks-list li::before{
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0,149,143,.13);
  color: var(--brand);
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
  line-height: 18px;
}

/* X-tee price tabs + table */
.xtee-price-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xtee-tab{
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,149,143,.28);
  background: transparent;
  color: var(--brand);
  font-weight: 600;
  font-size: .87rem;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
  font-family: inherit;
  line-height: 1;
}

.xtee-tab:hover{
  background: var(--brand-soft);
}

.xtee-tab.is-active{
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.xtee-price-table{
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11,18,32,.07);
  font-size: .9rem;
}

.xtee-price-table thead{
  background: var(--brand);
  color: #fff;
}

.xtee-price-table th{
  padding: 10px 16px;
  font-size: .77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: left;
}

.xtee-price-table th:last-child{
  text-align: right;
}

.xtee-price-table td{
  padding: 9px 16px;
  border-bottom: 1px solid rgba(11,18,32,.055);
  color: var(--muted);
  vertical-align: middle;
}

.xtee-price-table tbody tr:last-child td{
  border-bottom: none;
}

.xtee-price-table tbody tr:nth-child(even){
  background: rgba(0,149,143,.025);
}

.xtee-price-table td:last-child{
  text-align: right;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.xtee-row--once td{
  padding-top: 10px;
  padding-bottom: 10px;
}

.xtee-badge-once{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,149,143,.12);
  color: var(--brand);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 6px;
  vertical-align: middle;
  font-family: inherit;
}

.service-order{
  padding: 64px 0 72px;
  background: var(--bg-soft);
}

.teenused-contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 800px){
  .teenused-contact-grid{
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.teenused-contact-info h2{
  margin-bottom: 16px;
}

.teenused-contact-info p{
  margin: 0 0 12px;
  color: var(--muted);
}

.teenused-contact-info p:last-child{
  margin-bottom: 0;
}

.teenused-form-wrap{
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 40px;
}

.teenused-helpdesk{
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,18,32,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.teenused-helpdesk p{
  margin: 0;
}

.teenused-helpdesk a:hover{
  color: var(--brand);
}

@media (max-width: 719px){
  .service-panel summary{
    align-items: flex-start;
    padding-right: 54px;
    position: relative;
  }

  .service-panel summary::after{
    position: absolute;
    right: 18px;
    top: 16px;
  }

  .service-summary-meta{
    padding-right: 0;
  }

  .service-panel-body{
    padding-left: 22px;
  }

  .price-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row strong{
    white-space: normal;
  }
}

/* ── Shared features block (web hosting) ── */
.shared-features{
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,149,143,.18);
  background: rgba(0,149,143,.03);
  overflow: hidden;
}

.shared-features-head{
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(0,149,143,.09);
  color: var(--brand);
  border-bottom: 1px solid rgba(0,149,143,.14);
}

.shared-features-list{
  list-style: none;
  padding: 10px 16px 14px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}

.shared-features-list li{
  font-size: .87rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.shared-features-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand);
  font-size: .68rem;
  font-weight: 900;
}

/* ── Ghost plan card (vertical, in-grid) ── */
.plan-card--ghost-v{
  border: 2px dashed rgba(0,149,143,.28);
  background: transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, background 200ms;
}

.plan-card--ghost-v:hover{
  border-color: var(--brand);
  background: rgba(0,149,143,.03);
}

.plan-card-head--ghost{
  background: rgba(0,149,143,.06);
  padding: 28px 16px 22px;
  text-align: center;
  border-bottom: 1px solid rgba(0,149,143,.1);
}

.plan-card-ghost-label{
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.plan-card-ghost-body-v{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 18px 26px;
  text-align: center;
}

.plan-card-ghost-body-v p{
  margin: 0;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card-ghost-cta-v{
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
  font-size: .88rem;
  transition: background 160ms, color 160ms;
}

.plan-card--ghost-v:hover .plan-card-ghost-cta-v{
  background: var(--brand);
  color: #fff;
}

/* ── VPS page: infra stat cards ── */
.infra-stat-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 4px;
}

@media (max-width: 540px){
  .infra-stat-grid{ grid-template-columns: 1fr; }
}

.infra-stat{
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid rgba(11,18,32,.08);
  padding: 18px 20px 16px;
}

.infra-stat-kpi{
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  font-family: 'Fira Code', monospace;
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: -.03em;
}

.infra-stat-title{
  font-weight: 700;
  color: var(--text);
  margin: 0 0 5px;
  font-size: .94rem;
}

.infra-stat-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: .88rem;
}

/* ── VPS page: plan card enhancements ── */
.plan-card-badge{
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.plan-card-usecase{
  font-size: .77rem;
  opacity: .75;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}

/* ── VPS page: custom / ghost plan card ── */
.plan-card-custom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 2px dashed rgba(0,149,143,.28);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  margin-top: 4px;
  transition: border-color 200ms, background 200ms;
}

.plan-card-custom:hover{
  border-color: var(--brand);
  background: rgba(0,149,143,.03);
}

.plan-card-custom-text{
  display: grid;
  gap: 4px;
}

.plan-card-custom-text strong{
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
}

.plan-card-custom-text span{
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card-custom-cta{
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  transition: background 160ms, color 160ms;
}

.plan-card-custom:hover .plan-card-custom-cta{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 540px){
  .plan-card-custom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── VPS page: Teie/Meie responsibility table ── */
.vps-resp-table{
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(11,18,32,.08);
  background: #fff;
}

.vps-resp-table table{
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.vps-resp-table th{
  padding: 10px 14px;
  text-align: left;
  font-size: .77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 2px solid rgba(0,149,143,.2);
  background: var(--brand);
  color: #fff;
}

.vps-resp-table th:first-child{
  background: rgba(11,18,32,.72);
}

.vps-resp-table td{
  padding: 9px 14px;
  border-bottom: 1px solid rgba(11,18,32,.055);
  color: var(--muted);
  vertical-align: middle;
}

.vps-resp-table tbody tr:last-child td{
  border-bottom: none;
}

.vps-resp-table tbody tr:nth-child(odd){
  background: rgba(0,149,143,.02);
}

.resp-col--ours,
.resp-col--yours{
  text-align: center;
  white-space: nowrap;
}

.resp-yes{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
}

.resp-col--ours .resp-yes{
  background: rgba(0,149,143,.15);
  color: var(--brand);
}

.resp-col--yours .resp-yes{
  background: rgba(0,149,143,.1);
  color: var(--brand);
}

.resp-upsell{
  font-size: .82rem;
  color: var(--brand);
  text-decoration: none;
  font-style: italic;
}

.resp-upsell:hover{ text-decoration: underline; }

.resp-upsell-text{
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Cross-sell strip ── */
.related-services{
  padding: 24px 0 28px;
  background: var(--bg-soft);
  border-top: 1px solid rgba(11,18,32,.07);
}

.related-strip{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.related-label{
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0;
  padding-right: 4px;
}

.related-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,149,143,.25);
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background 180ms, border-color 180ms, transform 160ms;
}

.related-link:hover{
  background: var(--brand-soft);
  border-color: rgba(0,149,143,.45);
  transform: translateY(-1px);
}


/* ── Service prerequisite callout ── */
.service-prereq{
  border-left: 3px solid var(--brand);
  background: rgba(0,149,143,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 0 24px;
}

/* ── Add-on example chips ── */
.service-pricing > h4{
  margin: 14px 0 4px;
  font-size: .82rem;
  font-weight: 700;
}
.addon-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 0;
}
.addon-chip{
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11,18,32,.05);
  border: 1px solid rgba(11,18,32,.1);
  color: var(--muted);
}

/* ── Inline links in service body ── */
.service-detail-content p a,
.service-panel-body a,
.pricing-note a,
.domain-no-result a,
.domain-step-body a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Domain page ── */
.domain-ee-hero{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0,149,143,.06);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.domain-ee-ext{
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.03em;
  line-height: 1;
}
.domain-ee-sub{
  font-size: .82rem;
  color: var(--muted);
  margin-top: 6px;
}
.domain-ee-price{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
}
.domain-ee-unit{
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
}
.domain-popular{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.domain-pop-label{
  font-size: .8rem;
  color: var(--muted);
}
.domain-pop-chip{
  font-size: .85rem;
  font-family: inherit;
  padding: 5px 12px;
  background: rgba(11,18,32,.04);
  border: 1px solid rgba(11,18,32,.1);
  border-radius: 999px;
  color: var(--text);
  white-space: nowrap;
  cursor: pointer;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.domain-pop-chip:hover{
  background: rgba(0,149,143,.08);
  border-color: rgba(0,149,143,.3);
}
.domain-pop-chip b{ color: var(--brand); }
.domain-ext-search{
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid rgba(11,18,32,.15);
  border-radius: var(--radius);
  font-size: .95rem;
  background: #fff;
  color: inherit;
  outline: none;
  margin-bottom: 2px;
  transition: border-color 180ms, box-shadow 180ms;
}
.domain-ext-search:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,149,143,.12);
}
.domain-ext-results{ margin-bottom: 4px; }
.domain-result-row{
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(11,18,32,.06);
  font-size: .9rem;
}
.domain-result-row:last-child{ border-bottom: none; }
.domain-result-row strong{ font-size: .92rem; color: var(--brand); font-weight: 700; }
.domain-result-label{ font-size: .8rem; color: var(--muted); }
.domain-result-price{ font-weight: 600; white-space: nowrap; font-size: .88rem; }
.domain-no-result{ font-size: .88rem; color: var(--muted); padding: 12px 4px; }
.domain-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.domain-step{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.domain-step-num{
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.domain-step-body{
  flex: 1;
  font-size: .9rem;
  line-height: 1.6;
}
.domain-step-note{
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 6px;
  background: rgba(11,18,32,.03);
  border-left: 2px solid rgba(11,18,32,.12);
  padding: 7px 10px;
  border-radius: 0 4px 4px 0;
}

/* ── Plan spec row prominence modifiers ── */
.plan-spec-list .psl--key span{
  color: var(--text);
  font-weight: 600;
}
.plan-spec-list .psl--dim{
  opacity: .42;
}

/* ── Infra feature groups (thematic grouping within technical scope) ── */
.infra-feature-group{
  margin-bottom: 22px;
}
.infra-feature-group:last-child{
  margin-bottom: 0;
}
.infra-feature-group-title{
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,149,143,.15);
}
