/*
Theme Name: PaylessHost AI Safe
Theme URI: https://payless.host/
Author: Tzachi Zimet
Author URI: https://payless.host/
Description: Safe minimal version of the PaylessHost AI theme without external dependencies. Front page with AI assistant UI, domain search and marketplace section using only core WordPress functions.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paylesshost-ai-safe
*/

:root {
  --plh-bg: #020617;
  --plh-text: #e5e7eb;
  --plh-text-muted: #9ca3af;
  --plh-accent: #5b43d6;
  --plh-accent-strong: #f6c233;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #020617 0%, #020617 35%, #020617 100%);
  color: var(--plh-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--plh-accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.plh-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.site-header-wrap {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(20px);
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plh-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plh-text);
}

.plh-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--plh-accent-strong), var(--plh-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #020617;
}

.plh-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plh-logo-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.plh-logo-sub {
  font-size: 0.7rem;
  color: var(--plh-text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.site-nav a {
  color: var(--plh-text-muted);
}

.site-nav a:hover {
  color: var(--plh-text);
}

.plh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.plh-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plh-accent-strong);
  margin-bottom: 10px;
}

.plh-hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0 0 12px;
}

.plh-hero-sub {
  font-size: 0.95rem;
  color: var(--plh-text-muted);
  max-width: 34rem;
  margin: 0 0 18px;
}

.plh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plh-btn-primary,
.plh-btn-ghost,
.plh-btn-sm {
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  color: inherit;
}

.plh-btn-primary {
  background-image: linear-gradient(135deg, var(--plh-accent), #7e5bef);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.3);
}

.plh-btn-ghost {
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--plh-text-muted);
  background: rgba(15, 23, 42, 0.6);
}

/* Small CTA button (used inside cards) */
.plh-btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(255,255,255,.92);
}

.plh-hero-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(91, 67, 214, 0.12), rgba(15, 23, 42, 0.9));
  padding: 18px 18px 16px;
  font-size: 0.85rem;
}

.plh-hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plh-text-muted);
  margin-bottom: 4px;
}

.plh-hero-stat-main {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.plh-hero-stat-sub {
  font-size: 0.8rem;
  color: var(--plh-text-muted);
}

.plh-hero-visual {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(91, 67, 214, 0.2), rgba(15, 23, 42, 0.9));
}

.plh-hero-visual img {
  width: 100%;
  display: block;
}

.plh-divider {
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  margin: 22px 0;
}

.plh-domain-box {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 14px 16px 16px;
  background: rgba(15, 23, 42, 0.9);
  margin-bottom: 20px;
}

.plh-domain-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.plh-domain-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.plh-domain-brand {
  font-size: 0.75rem;
  color: var(--plh-text-muted);
}

.plh-domain-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plh-domain-input {
  flex: 1 1 180px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(2, 6, 23, 0.9);
  padding: 8px 12px;
  color: var(--plh-text);
  font-size: 0.86rem;
}

.plh-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.plh-logo-chip {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
}

.plh-logo-chip img {
  max-height: 18px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.plh-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 10px;
}

.plh-section-title {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.plh-section-sub {
  font-size: 0.85rem;
  color: var(--plh-text-muted);
  margin: 0;
}

.plh-ai-wrapper {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(91, 67, 214, 0.18), rgba(15, 23, 42, 0.95));
  padding: 16px 16px 14px;
}

.plh-ai-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.plh-ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.8rem;
}

.plh-ai-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.plh-ai-sub {
  font-size: 0.8rem;
  color: var(--plh-text-muted);
}

.plh-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.plh-ai-questions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plh-ai-q-label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.plh-ai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plh-tag-option {
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  padding: 4px 10px;
  cursor: pointer;
  color: var(--plh-text-muted);
}

.plh-ai-notes {
  width: 100%;
  min-height: 60px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(2, 6, 23, 0.9);
  color: var(--plh-text);
  font-size: 0.8rem;
  padding: 8px 10px;
  resize: vertical;
}

.plh-ai-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.plh-ai-hint {
  font-size: 0.75rem;
  color: var(--plh-text-muted);
}

.plh-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.plh-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(2, 6, 23, 0.9);
  padding: 10px 12px 10px;
  font-size: 0.8rem;
}

.plh-card-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.plh-provider-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plh-text-muted);
}

.plh-plan-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.plh-price-line {
  font-weight: 600;
  font-size: 0.9rem;
}

.plh-price-note {
  font-size: 0.72rem;
  color: var(--plh-text-muted);
}

.plh-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.plh-small-tag {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.plh-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: flex-start;
}

.plh-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plh-step-item {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(2, 6, 23, 0.9);
  padding: 10px 12px 9px;
}

.plh-step-label {
  font-size: 0.72rem;
  color: var(--plh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.plh-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.plh-step-body {
  font-size: 0.8rem;
  color: var(--plh-text-muted);
}

.plh-trust {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(91, 67, 214, 0.2), rgba(15, 23, 42, 0.95));
  padding: 10px 12px 9px;
  font-size: 0.8rem;
}

.plh-cta-bottom {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top right, rgba(246, 194, 51, 0.2), rgba(15, 23, 42, 0.95));
  padding: 12px 14px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.plh-cta-text-main {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.plh-cta-text-sub {
  font-size: 0.82rem;
  color: var(--plh-text-muted);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 32px;
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  font-size: 0.78rem;
  color: var(--plh-text-muted);
}

@media (max-width: 960px) {
  .plh-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .plh-ai-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .plh-columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =========================
   Homepage enhancements
   ========================= */

.plh-langbar {
  margin: 0 0 18px;
}
.plh-langbar-inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.7);
}
.plh-langbar-label{
  font-size: .85rem;
  color: rgba(226, 232, 240, 0.75);
}
.plh-langbar-links{ display:flex; gap:8px; flex-wrap:wrap; }
.plh-lang-link{
  text-decoration:none;
  font-weight:700;
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148, 163, 184, 0.35);
  color:#f9fafb;
  background: rgba(2, 6, 23, 0.3);
}
.plh-lang-link:hover{
  border-color: rgba(246, 194, 51, 0.8);
  box-shadow: 0 0 0 2px rgba(246, 194, 51, 0.18);
}

.plh-ad-slot{
  margin: 18px 0;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.55);
  padding: 12px;
}
.plh-ad-slot .plh-widget{ width:100%; }
.plh-ad-slot ins, .plh-ad-slot iframe { max-width: 100%; }

.plh-chip-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.plh-chip{
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.35);
  color: rgba(226, 232, 240, 0.92);
  font-weight:600;
  font-size:.9rem;
}
.plh-chip:hover{
  border-color: rgba(246, 194, 51, 0.8);
  box-shadow: 0 0 0 2px rgba(246, 194, 51, 0.16);
}

.plh-hero-videoframe{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.55);
}
.plh-hero-videoframe iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.plh-hero-video{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.55);
}

.plh-post-card .plh-post-thumb img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
}
.plh-post-body{
  margin-top:10px;
}
.plh-post-title{
  display:block;
  font-weight:800;
  text-decoration:none;
  color:#f9fafb;
  margin-bottom:6px;
  line-height:1.25;
}
.plh-post-title:hover{ color: #f6c233; }
.plh-post-excerpt{
  color: rgba(226, 232, 240, 0.8);
  font-size: .95rem;
  line-height:1.45;
}

.plh-home-footer{
  margin-top: 28px;
}
.plh-home-footer-inner{
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top right, rgba(246, 194, 51, 0.18), rgba(2, 6, 23, 0.95));
  padding: 18px;
}
.plh-home-footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.plh-home-footer-kicker{
  color: rgba(246, 194, 51, 0.95);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 6px;
}
.plh-home-footer-title{
  font-size: 1.55rem;
  font-weight: 900;
  color: #f9fafb;
  margin-bottom: 8px;
}
.plh-home-footer-sub{
  color: rgba(226, 232, 240, 0.82);
  max-width: 62ch;
  line-height: 1.45;
}
.plh-home-footer-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.plh-home-footer-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 900px){
  .plh-home-footer-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .plh-home-footer-grid{ grid-template-columns: 1fr; }
}

.plh-home-footer-col{
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.45);
  padding: 12px;
}
.plh-home-footer-col-title{
  font-weight: 900;
  color: #f9fafb;
  margin-bottom: 8px;
}
.plh-home-footer-col-text{
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.45;
  font-size: .95rem;
}
.plh-home-footer-link{
  display:block;
  text-decoration:none;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 650;
  padding: 7px 8px;
  border-radius: 12px;
}
.plh-home-footer-link:hover{
  background: rgba(246, 194, 51, 0.10);
  color:#f9fafb;
}

.plh-home-footer-lang{
  display:flex;
  gap:8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.plh-home-footer-langlink{
  text-decoration:none;
  font-weight: 800;
  font-size: .9rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.25);
  color:#f9fafb;
}
.plh-home-footer-langlink:hover{
  border-color: rgba(246, 194, 51, 0.85);
  box-shadow: 0 0 0 2px rgba(246, 194, 51, 0.16);
}

.plh-home-footer-bottom{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 10px;
}
.plh-home-footer-note{
  color: rgba(226, 232, 240, 0.7);
  font-size: .88rem;
}



/* ==============================
   Homepage: dashboard blocks & compact grids
   ============================== */

.plh-domain-box{
  margin: 22px 0 8px;
  border-radius: 18px;
  padding: 14px;
  background: radial-gradient(800px 140px at 10% 0%, rgba(128,97,255,.12), rgba(0,0,0,0) 60%),
              radial-gradient(600px 160px at 90% 20%, rgba(0,225,255,.10), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.plh-domain-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.plh-domain-label{
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(255,255,255,.74);
}
.plh-domain-brand{
  font-size:12px;
  color: rgba(255,255,255,.55);
}
.plh-domain-embed{ padding: 6px 6px 2px; }
.plh-domain-empty{
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px dashed rgba(255,255,255,.16);
}
.plh-domain-empty-title{ font-weight:700; margin-bottom:4px; }
.plh-domain-empty-sub{ color: rgba(255,255,255,.65); font-size:13px; }

.plh-section{ margin: 26px 0; }

.plh-provider-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .plh-provider-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .plh-provider-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.plh-provider-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.plh-provider-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.plh-provider-logo{
  height: 56px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.plh-provider-logo img{
  max-height: 34px;
  max-width: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  display:block;
  filter: saturate(1.05);
}
.plh-provider-logo-fallback{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(128,97,255,.25);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}
.plh-provider-title{
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  text-align:center;
  line-height: 1.2;
}

/* Deals: one-row scroll for compact home */
.plh-row-scroll{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.plh-row-scroll::-webkit-scrollbar{ height: 8px; }
.plh-row-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.12);
  border-radius: 20px;
}
.plh-deal-card{
  min-width: 260px;
  max-width: 320px;
  scroll-snap-align: start;
}
.plh-deal-link{
  display:block;
  height:100%;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease;
}
.plh-deal-link:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.plh-deal-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.plh-deal-logo{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.plh-deal-logo img{ max-height: 34px; max-width: 92%; width:auto; height:auto; object-fit:contain; display:block; }
.plh-deal-meta .plh-provider-name{ font-size: 12px; color: rgba(255,255,255,.62); }
.plh-deal-meta .plh-plan-name{ font-weight: 800; font-size: 14px; margin-top:2px; }
.plh-deal-bottom .plh-price-line{ font-weight: 900; font-size: 16px; margin-bottom: 4px; }
.plh-deal-bottom .plh-price-note{ color: rgba(255,255,255,.68); font-size: 13px; }
.plh-deal-cta{ margin-top: 10px; font-weight: 800; color: rgba(0,225,255,.92); }

/* Latest guides: compact cards */
.plh-guides-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .plh-guides-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .plh-guides-grid{ grid-template-columns: 1fr; }
}
.plh-guide-card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease;
}
.plh-guide-card:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.plh-guide-card-link{
  display:flex;
  flex-direction:column;
  height:100%;
}
.plh-guide-card-thumb{
  position:relative;
  background: rgba(0,0,0,.20);
  height: 148px;
}
.plh-guide-card-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.plh-guide-card-body{
  padding: 12px 14px 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  height:100%;
}
.plh-guide-actions{ margin-top:auto; }

.plh-guide-thumb-fallback{
  width:100%;
  height:100%;
  background: radial-gradient(200px 120px at 20% 20%, rgba(128,97,255,.18), rgba(0,0,0,.10) 60%),
              radial-gradient(200px 120px at 80% 60%, rgba(0,225,255,.14), rgba(0,0,0,.10) 65%);
}
.plh-guide-title{ font-weight: 900; font-size: 14px; line-height: 1.25; }
.plh-guide-excerpt{ color: rgba(255,255,255,.70); font-size: 13px; line-height: 1.45; }
.plh-guide-cta{ margin-top:auto; font-weight: 800; color: rgba(0,225,255,.92); }

/* Tools: single-row app grid */
.plh-app-row{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 6px;
}
.plh-app-row::-webkit-scrollbar{ height: 8px; }
.plh-app-row::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.12);
  border-radius: 20px;
}
.plh-app-card{
  min-width: 210px;
  max-width: 230px;
  flex: 0 0 auto;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease;
}

/* Desktop: show 8 app tiles in a single row (no stacking) */
@media (min-width: 1100px){
  .plh-app-row{
    display:grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }
  .plh-app-card{
    min-width: 0;
    max-width: none;
  }
  .plh-app-logo{ height: 48px; }
  .plh-app-logo img{ max-height: 30px; }
  .plh-app-sub{ display:none; }
}
.plh-app-card:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.plh-app-logo{
  height: 56px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom: 10px;
}
.plh-app-logo img{ max-height: 34px; max-width: 92%; width:auto; height:auto; object-fit:contain; display:block; }
.plh-app-title{ font-weight: 900; font-size: 14px; margin-bottom: 6px; }
.plh-app-sub{ color: rgba(255,255,255,.70); font-size: 13px; line-height: 1.4; }

/* Steps: clean, readable */
.plh-steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .plh-steps-grid{ grid-template-columns: 1fr; }
}
.plh-step-card{
  position:relative;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}
.plh-step-badge{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(0,225,255,.12);
  border: 1px solid rgba(0,225,255,.22);
  margin-bottom: 10px;
}
.plh-step-title{ font-weight: 900; font-size: 15px; margin-bottom: 6px; }
.plh-step-body{ color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }

.plh-cta-bottom{
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px 16px;
  background: radial-gradient(700px 160px at 10% 0%, rgba(128,97,255,.14), rgba(0,0,0,0) 60%),
              radial-gradient(600px 160px at 90% 40%, rgba(0,225,255,.10), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
@media (max-width: 980px){
  .plh-cta-bottom{ flex-direction:column; align-items:flex-start; }
}
.plh-cta-kicker{ font-weight:800; text-transform:uppercase; letter-spacing:.04em; font-size:12px; color: rgba(255,255,255,.70); }
.plh-cta-title{ font-weight: 900; font-size: 18px; margin-top: 4px; }
.plh-cta-sub{ color: rgba(255,255,255,.70); margin-top: 4px; font-size: 13px; line-height: 1.45; }
.plh-cta-actions{ display:flex; gap: 10px; flex-wrap:wrap; }

/* Global footer upgrade */
.site-footer{
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(900px 260px at 30% 0%, rgba(128,97,255,.10), rgba(0,0,0,0) 60%),
              radial-gradient(800px 240px at 80% 40%, rgba(0,225,255,.08), rgba(0,0,0,0) 60%),
              linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
}
.site-footer-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 18px;
}
.plh-footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px){
  .plh-footer-grid{ grid-template-columns: 1fr; }
}
.plh-footer-brand{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}
.plh-footer-about{
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-size: 13px;
}
.plh-footer-col-title{
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(255,255,255,.92);
}
.plh-footer-links{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.plh-footer-links a{
  color: rgba(255,255,255,.72);
  text-decoration:none;
}
.plh-footer-links a:hover{
  color: rgba(0,225,255,.92);
}
.plh-footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.plh-footer-note{
  color: rgba(255,255,255,.60);
  font-size: 12px;
}
.plh-footer-lang{
  display:flex;
  align-items:center;
  gap: 8px;
}
.plh-footer-lang a{
  color: rgba(255,255,255,.70);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
}
.plh-footer-lang a:hover{ border-color: rgba(0,225,255,.22); color: rgba(0,225,255,.92); }


.plh-hero-graphic{
  width:100%;
  height:100%;
  min-height: 240px;
  border-radius: 18px;
  background: radial-gradient(500px 240px at 20% 10%, rgba(128,97,255,.25), rgba(0,0,0,0) 60%),
              radial-gradient(500px 240px at 80% 70%, rgba(0,225,255,.18), rgba(0,0,0,0) 65%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.plh-hero-videoframe{
  position:relative;
  width:100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
}
.plh-hero-videoframe iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.plh-hero-video{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
