:root {
  --bg-body: #f4f6fb;
  --bg-white: #ffffff;
  --bg-alt: #f1f3f8;
  --primary: #2456ff;
  --primary-dark: #1434b8;
  --text-main: #101828;
  --text-muted: #6b7280;
  --border-soft: #e2e8f0;
  --radius-card: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.75rem;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header + Logo */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.logo-text span {
  color: var(--primary);
}

/* Nav + mega menu */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  padding: 0.25rem 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.nav-link.link-only {
  cursor: pointer;
}

.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
  border-radius: 999px;
}

.nav-item:hover > .nav-link::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

/* Butoane */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(36, 86, 255, 0.3);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.05);
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Mega menu – fix hover */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%; /* fix pentru hover */
  padding: 1.5rem;
  padding-top: 10px; /* zona tampon */
  margin-top: -10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: none;
  z-index: 40;
  min-width: 640px;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Important: hover funcțional */
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.open .mega-menu {
  display: grid;
}

.mega-menu-narrow {
  min-width: 340px;
  max-width: 420px;
  grid-template-columns: 1fr;
}

.mega-col h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mega-col a {
  display: block;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  color: var(--text-main);
}

.mega-col a:hover {
  color: var(--primary);
}

@media (min-width: 960px) {
 .nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.open .mega-menu {
    display: grid;
}
}

/* Toggle meniu mobil */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #e0e7ff, #f4f6fb);
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3.1vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.server-box {
  width: 220px;
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0f172a, #1f2937);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.server-line {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(to right, #e5e7eb, #9ca3af);
}

.server-indicator {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid #22c55e;
  align-self: flex-end;
}

.hero-visual-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  margin-bottom: 0.2rem;
}

.price {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features li {
  margin-bottom: 0.4rem;
}

.pricing-card-featured {
  border-color: rgba(36, 86, 255, 0.6);
  box-shadow: var(--shadow-soft);
  position: relative;
  transform: translateY(-4px);
}

.pricing-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(36, 86, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.feature-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Migrare */
.migrare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-check li::before {
  content: "✔";
  color: #22c55e;
  margin-right: 0.5rem;
}

.folder-illustration {
  width: 180px;
  height: 130px;
  position: relative;
  margin: 0 auto;
}

.folder {
  width: 100%;
  height: 70%;
  background: #e5e7eb;
  border-radius: 14px;
  position: absolute;
  bottom: 0;
}

.file {
  width: 70%;
  height: 55%;
  background: #f9fafb;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 1.4rem;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.testimonial-text {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.testimonial-author span {
  color: var(--primary);
}

/* Partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partners-row span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.faq-list {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  padding: 1rem;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-soft);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 0.8rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, #e0e7ff, #f9fafb);
  padding: 2.5rem 0;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
}

/* Domains */
.domain-search {
  max-width: 520px;
  margin: 0 auto;
}

.domain-search label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.domain-search-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.domain-search input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.domain-result {
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.text-muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.8rem;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.domain-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  padding: 1.2rem;
  text-align: center;
}

/* About & Contact */
.services-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
}

/* Footer */
.footer {
  background: #020617;
  color: #e5e7eb;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0 1rem;
  font-size: 0.9rem;
}

.footer a {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.footer ul li + li {
  margin-top: 0.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.8rem 0;
  font-size: 0.8rem;
}

.footer-bottom-inner {
  text-align: center;
}

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

  .pricing-grid,
  .features-grid,
  .testimonials-grid,
  .domains-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .migrare-grid,
  .faq-grid,
  .services-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

  .section {
    padding: 2.3rem 0;
  }

  .footer-grid {
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {

  /* Logo centrat + hamburger în dreapta */
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    inset: 56px 0 auto 0;
    width: 100%;
    background: #ffffff;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .nav-cta .btn,
  .nav-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .mega-menu,
  .mega-menu-narrow {
    position: static;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    margin-top: 0.5rem;
    padding: 0.9rem 1rem;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .nav-item.has-mega.open .mega-menu {
    display: grid;
  }
}
/* ===========================
   PAGINA GAZDUIRE WORDPRESS
   =========================== */

/* HERO WordPress */
.wordpress-hero {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at top left, #e0ecff, #f4f7ff);
}

.wordpress-hero h1 {
  font-size: clamp(2rem, 2.6vw + 1rem, 2.6rem);
  margin-bottom: 0.75rem;
}

.wordpress-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
}

.wordpress-hero .hero-ctas {
  justify-content: center;
}

.wp-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wp-badges span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-soft);
}

/* Avantaje WordPress – grid de carduri cu iconiță */
.wp-avantaje-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.wp-avantaj {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.3rem 1.3rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  font-size: 0.95rem;
}

.wp-avantaj h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.wp-avantaj p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* icon rotund cu check */
.wp-avantaj::before {
  content: "✔";
  position: absolute;
  left: 1.4rem;
  top: -0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ecfdf3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #22c55e;
  border: 1px solid #bbf7d0;
}

/* Tabel comparativ WordPress */
.wp-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.wp-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.9rem;
}

.wp-compare-table thead {
  background: #f9fafb;
}

.wp-compare-table th,
.wp-compare-table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.wp-compare-table th {
  font-weight: 600;
}

.wp-compare-table th.highlight {
  background: #eef2ff;
}

.wp-compare-table th .best {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #facc15;
  font-size: 0.7rem;
}

/* Carduri pachete WordPress */
.wp-pricing-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.wp-pricing-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.wp-pricing-card h3 {
  margin: 0 0 0.35rem;
}

.wp-pricing-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.wp-pricing-price span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.wp-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.wp-pricing-list li + li {
  margin-top: 0.3rem;
}

.wp-pricing-card.highlight {
  border-color: rgba(36, 86, 255, 0.7);
  transform: translateY(-4px);
}

.wp-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #fef3c7;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Secțiune PageSpeed */
.wp-pagespeed {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.wp-pagespeed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.wp-pagespeed-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* Secțiune CDN */
.wp-cdn {
  background: #020617;
  color: #e5e7eb;
  padding: 3rem 0;
}

.wp-cdn-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.wp-cdn-img img {
  width: 100%;
  max-width: 360px;
}

.wp-cdn-text h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}

.wp-cdn-text p {
  color: #cbd5f5;
}

/* Responsive WordPress */
@media (max-width: 960px) {
  .wp-avantaje-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-pagespeed-grid,
  .wp-cdn-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wp-cdn-text {
    order: -1;
  }
}

@media (max-width: 640px) {
  .wp-avantaje-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wp-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wp-table-wrapper {
    border-radius: 12px;
  }
}
/* Pachete WordPress detaliate (ca în a doua poză) */

.wp-billing-switch {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: #e5edff;
  margin: 0 auto 1.75rem;
  border: 1px solid #c7d2fe;
}

.wp-billing-switch button {
  border: none;
  background: transparent;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 999px;
  color: #4b5563;
}

.wp-billing-switch button.active {
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Layout carduri mai înalte */
.wp-pricing-grid-detailed .wp-pricing-card.wp-detailed {
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
}

.wp-pricing-card.wp-detailed h3 {
  margin-bottom: 0.1rem;
}

.wp-pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.wp-pricing-card.wp-detailed .btn {
  margin-bottom: 0.9rem;
}

.wp-pricing-section h4 {
  margin: 0.75rem 0 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.wp-pricing-list.primary li {
  font-size: 0.9rem;
}

/* Listă cu ✔ / ✕ */
.wp-pricing-list.features {
  margin-top: 0.35rem;
}

.wp-pricing-list.features li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.87rem;
}

.wp-pricing-list.features .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-top: 2px;
}

.wp-pricing-list.features li.ok .icon {
  background: #ecfdf3;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.wp-pricing-list.features li.no .icon {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Link de test viteză */
.wp-test-link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #020617;
  color: #f9fafb;
  align-self: flex-start;
}

/* Responsive – când cardurile devin lungi */
@media (max-width: 960px) {
  .wp-pricing-grid-detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wp-pricing-grid-detailed {
    grid-template-columns: minmax(0, 1fr);
  }
}