/* ============================================================
   CTS.RO — Design System
   Dark cloud tech aesthetic: navy + cyan + white
   Font: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #050d1f;
  --navy-2:      #0a1628;
  --navy-3:      #0f1f3d;
  --navy-4:      #162040;
  --navy-card:   #0c1830;
  --cyan:        #00d4ff;
  --cyan-dim:    #0099cc;
  --cyan-glow:   rgba(0, 212, 255, 0.15);
  --cyan-border: rgba(0, 212, 255, 0.25);
  --white:       #ffffff;
  --white-90:    rgba(255, 255, 255, 0.9);
  --white-60:    rgba(255, 255, 255, 0.6);
  --white-30:    rgba(255, 255, 255, 0.3);
  --white-10:    rgba(255, 255, 255, 0.08);
  --green:       #00e676;
  --red:         #ff5252;
  --yellow:      #ffd740;
  --border:      rgba(255, 255, 255, 0.1);
  --border-cyan: rgba(0, 212, 255, 0.3);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.2);
  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--navy);
  color: var(--white-90);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
p { color: var(--white-60); }
a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
strong { color: var(--white); font-weight: 600; }
small, .text-small { font-size: 0.8125rem; line-height: 1.5; color: var(--white-60); }
.text-muted { color: var(--white-40); font-size: 0.875rem; }
.text-accent { color: var(--cyan); }
.text-xs { font-size: 0.75rem; line-height: 1.5; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 860px; }
.container-lg { max-width: 1400px; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 13, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo span { color: var(--cyan); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-main { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--white-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .nav__logo-sub { display: none; }
}
.nav__logo-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
}
.nav__links a {
  color: var(--white-60);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); background: var(--white-10); }

.nav__cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white-60);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
}

.btn-secondary {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

/* ---- Cards ---- */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ---- Provider Card ---- */
.provider-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.provider-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}
.provider-card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.provider-card:hover::before { opacity: 1; }

.provider-card--featured {
  border-color: rgba(0, 212, 255, 0.2);
}
.provider-card--featured::after {
  content: 'Featured';
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.provider-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.provider-card__logo {
  width: 48px; height: 48px;
  background: var(--white-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.provider-card__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.provider-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.provider-card__category {
  display: inline-block;
  font-size: 0.73rem;
  color: var(--cyan);
  background: var(--cyan-glow);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--cyan-border);
}
.provider-card__desc {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
  flex: 1;
}
.provider-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.provider-card__price {
  font-size: 0.85rem;
  color: var(--white-60);
}
.provider-card__price strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

/* ---- Rating ---- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.rating__score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}
.rating__stars { display: flex; gap: 2px; }
.rating__star {
  width: 14px; height: 14px;
  color: var(--yellow);
}
.rating__star--empty { color: var(--white-30); }

.rating-badge {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  text-align: center;
}
.rating-badge__label {
  font-size: 0.75rem;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.rating-badge__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.rating-badge__bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.rating-badge__fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 1s ease;
}

/* ---- Score Circle ---- */
.score-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) calc(var(--pct) * 1%), var(--navy-3) 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.score-circle::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--navy-card);
}
.score-circle__value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title .accent { color: var(--cyan); position: relative; }
.hero__title .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  opacity: 0.5;
}
.hero__subtitle {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  color: var(--white-60);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--white-60);
  display: block;
}

/* ---- Category Pills ---- */
.categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  transition: var(--transition);
  text-decoration: none;
}
.category-pill:hover, .category-pill.active {
  background: var(--cyan-glow);
  border-color: var(--cyan-border);
  color: var(--cyan);
}
.category-pill__icon { font-size: 1rem; }

/* ---- Grid Layouts ---- */
.grid-providers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Comparison Table ---- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--navy-3);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.comparison-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--white-60);
  vertical-align: middle;
}
.comparison-table td:first-child { color: var(--white); font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--white-10); }
.comparison-table .check { color: var(--green); font-size: 1.1rem; }
.comparison-table .cross { color: var(--red); font-size: 1.1rem; }
.comparison-table .partial { color: var(--yellow); font-size: 1.1rem; }

/* ---- Review Page ---- */
.review-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.review-header__top {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.review-header__logo {
  width: 80px; height: 80px;
  background: var(--navy-3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.review-header__info { flex: 1; }
.review-header__ratings {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.review-header__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.review-section {
  margin-bottom: 2.5rem;
}
.review-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.review-section h2::before {
  content: '';
  width: 3px;
  height: 1.2em;
  background: var(--cyan);
  border-radius: 2px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pros-cons__list {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.pros-cons__list h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.pros-cons__list--pros { border-color: rgba(0, 230, 118, 0.2); }
.pros-cons__list--cons { border-color: rgba(255, 82, 82, 0.2); }
.pros-cons__list--pros h3 { color: var(--green); }
.pros-cons__list--cons h3 { color: var(--red); }
.pros-cons__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--white-60);
  border-bottom: 1px solid var(--border);
}
.pros-cons__item:last-child { border-bottom: none; }
.pros-cons__icon { flex-shrink: 0; margin-top: 2px; }

.verdict-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.07) 0%, rgba(10, 22, 40, 0) 100%);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.verdict-box__label {
  font-size: 0.75rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--white-30);
  padding: 1rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--white-60); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb__sep { color: var(--white-30); }

/* ---- Tags ---- */
.tag {
  display: inline-block;
  background: var(--navy-3);
  border: 1px solid var(--border);
  color: var(--white-60);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- Feature Badge ---- */
.feature-yes {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.feature-no {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--white-60);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: var(--white-60); font-size: 0.875rem; }
.footer__links a:hover { color: var(--cyan); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-30);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Alerts ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.alert-info { background: rgba(0, 212, 255, 0.07); border: 1px solid var(--cyan-border); color: var(--white-60); }
.alert-info strong { color: var(--cyan); }

/* ---- Search Bar ---- */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  max-width: 480px;
}
.search-bar:focus-within {
  border-color: var(--cyan-border);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.search-bar input::placeholder { color: var(--white-30); }
.search-bar button {
  padding: 0.75rem 1.25rem;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--white); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.page-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--navy-card);
  border: 1px solid var(--border);
  color: var(--white-60);
  font-size: 0.875rem;
  transition: var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

/* ---- Guide Card ---- */
.guide-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.guide-card:hover { border-color: var(--border-cyan); transform: translateY(-2px); }
.guide-card__category {
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.guide-card h3 { font-size: 1.05rem; margin: 0; }
.guide-card p { font-size: 0.875rem; color: var(--white-60); margin: 0; }
.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}
.guide-card__link:hover { gap: 0.7rem; }

/* ---- Sticky Sidebar ---- */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.review-sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-60);
  margin-bottom: 1rem;
}

/* ---- Scroll-in animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utilities ---- */
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--white-60); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
  h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); line-height: 1.2; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .hero { padding: 3.2rem 0 2.4rem; }
  .hero__stats { gap: 1.5rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.7rem 0.9rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .review-header__top { flex-direction: column; }
}


/* ── CTS.RO Monitored Pricing Block ──────────────────────────── */
.monitored-pricing {
  margin: 48px 0;
  padding: 32px;
  background: #f7fafd;
  border: 1px solid #dde8f5;
  border-radius: 14px;
  border-top: 4px solid #00C2A8;
}

.mp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.mp-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1E3A5F;
  margin: 0 0 4px;
}

.mp-subtitle {
  font-size: 0.85rem;
  color: #7a8fa6;
  margin: 0;
}

.mp-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #5a7a96;
  background: white;
  border: 1px solid #c8dced;
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

.mp-verified-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00C2A8;
  display: inline-block;
  flex-shrink: 0;
}

/* Change badges */
.mp-changes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.mp-change-badge {
  font-size: 0.78rem;
  font-weight: 600;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  border-radius: 20px;
  padding: 4px 12px;
}

.mp-change-badge.mp-change-new {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

/* Plans grid */
.mp-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.mp-plan {
  background: white;
  border: 1px solid #dde8f5;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-plan--first {
  border-color: #00C2A8;
  box-shadow: 0 2px 12px rgba(0, 194, 168, 0.15);
}

.mp-plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E3A5F;
}

.mp-plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.mp-price-promo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E3A5F;
  line-height: 1;
}

.mp-price-currency {
  font-size: 0.9rem;
  font-weight: 600;
}

.mp-price-regular {
  font-size: 0.8rem;
  color: #9aacbc;
  text-decoration: line-through;
}

.mp-price-period {
  font-size: 0.78rem;
  color: #7a8fa6;
}

.mp-price-na {
  color: #b0bec5;
  font-size: 1.2rem;
}

/* Features list */
.mp-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.82rem;
  color: #4a5d70;
}

.mp-plan-features li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mp-feat-label {
  font-weight: 600;
  color: #1E3A5F;
  min-width: 50px;
}

.mp-feat-icon {
  color: #00C2A8;
  font-weight: 700;
}

/* Disclaimer */
.mp-disclaimer {
  font-size: 0.78rem;
  color: #9aacbc;
  margin: 0;
  line-height: 1.5;
}

.mp-disclaimer a {
  color: #5a8ab8;
  text-decoration: none;
}

.mp-disclaimer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .monitored-pricing {
    padding: 20px 16px;
  }
  .mp-plans-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mp-header {
    flex-direction: column;
  }
}


/* ══════════════════════════════════════════════════════════════
   CTS PRICE MONITOR — Phase 1
   ══════════════════════════════════════════════════════════════ */

/* ── Badge ─────────────────────────────────────────────────── */
.cts-monitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #00C2A8;
  letter-spacing: 0.01em;
}
.cts-monitor-badge .dot {
  width: 6px;
  height: 6px;
  background: #00C2A8;
  border-radius: 50%;
  flex-shrink: 0;
  animation: mp-pulse 2.4s ease-in-out infinite;
}
@keyframes mp-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* ── Review page — monitored-pricing section ────────────────── */
.mp-section {
  margin: 48px 0;
  padding: 32px 36px;
  background: var(--navy-2, #0d1829);
  border: 1px solid var(--border, rgba(255,255,255,.08));
  border-radius: 14px;
  border-top: 3px solid #00C2A8;
}

.mp-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.mp-section__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white, #fff);
  margin: 0 0 6px;
}

.mp-section__sub {
  font-size: 0.84rem;
  color: var(--white-60, rgba(255,255,255,.6));
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mp-section__date {
  font-size: 0.8rem;
  color: var(--white-60, rgba(255,255,255,.6));
  white-space: nowrap;
}

/* Table */
.mp-table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
  border-radius: 8px;
}

.mp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}

.mp-table thead th {
  background: rgba(0,194,168,.1);
  color: #00C2A8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 14px;
  text-align: left;
  white-space: nowrap;
}

.mp-table thead th:first-child { border-radius: 6px 0 0 6px; }
.mp-table thead th:last-child  { border-radius: 0 6px 6px 0; }

.mp-table tbody tr {
  border-bottom: 1px solid var(--border, rgba(255,255,255,.06));
  transition: background 0.15s;
}
.mp-table tbody tr:last-child { border-bottom: none; }
.mp-table tbody tr:hover { background: rgba(255,255,255,.025); }

.mp-table td { padding: 11px 14px; color: var(--white-80, rgba(255,255,255,.8)); vertical-align: middle; }

.mp-td-name { font-weight: 600; color: var(--white, #fff); }
.mp-td-detail {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-60, rgba(255,255,255,.6));
  margin-top: 2px;
}

.mp-td-price { white-space: nowrap; }
.mp-price-val {
  font-weight: 700;
  color: #00C2A8;
  font-size: 0.95rem;
}
.mp-price-old {
  font-size: 0.78rem;
  color: var(--white-40, rgba(255,255,255,.4));
  text-decoration: line-through;
  margin-left: 6px;
}

.mp-td-type { color: var(--white-60, rgba(255,255,255,.6)); font-size: 0.82rem; }
.mp-td-date { color: var(--white-40, rgba(255,255,255,.4)); font-size: 0.78rem; white-space: nowrap; }

/* Trust note */
.mp-trust-note {
  font-size: 0.76rem;
  color: var(--white-40, rgba(255,255,255,.4));
  line-height: 1.55;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border, rgba(255,255,255,.06));
}

/* ── Homepage section — #hosting-price-monitor ──────────────── */
.hpm-section {
  padding: 64px 0;
  border-top: 1px solid var(--border, rgba(255,255,255,.08));
}

.hpm-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hpm-header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 6px;
}

.hpm-header p {
  font-size: 0.88rem;
  color: var(--white-60, rgba(255,255,255,.6));
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hpm-header a {
  font-size: 0.84rem;
  color: #00C2A8;
  text-decoration: none;
  white-space: nowrap;
}
.hpm-header a:hover { text-decoration: underline; }

.hpm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.hpm-card {
  background: var(--navy-2, #0d1829);
  border: 1px solid var(--border, rgba(255,255,255,.08));
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
.hpm-card:hover {
  border-color: #00C2A8;
  transform: translateY(-2px);
}

.hpm-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white, #fff);
}

.hpm-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #00C2A8;
  line-height: 1;
}
.hpm-card__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-60, rgba(255,255,255,.6));
  margin-left: 4px;
}

.hpm-card__updated {
  font-size: 0.75rem;
  color: var(--white-40, rgba(255,255,255,.4));
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.hpm-card__updated::before {
  content: '';
  width: 5px; height: 5px;
  background: #00C2A8;
  border-radius: 50%;
  opacity: .7;
  flex-shrink: 0;
}

/* ── /cel-mai-bun-hosting-romania price table ───────────────── */
.pm-compare {
  margin: 0 0 48px;
  padding: 32px 36px;
  background: var(--navy-2, #0d1829);
  border: 1px solid var(--border, rgba(255,255,255,.08));
  border-radius: 14px;
}

.pm-compare__hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pm-compare__hdr h2 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--white, #fff);
}

.pm-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.pm-compare-table thead th {
  background: rgba(0,194,168,.1);
  color: #00C2A8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 9px 14px;
  text-align: left;
}
.pm-compare-table thead th:first-child { border-radius: 6px 0 0 6px; }
.pm-compare-table thead th:last-child  { border-radius: 0 6px 6px 0; }
.pm-compare-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.06));
  color: var(--white-80, rgba(255,255,255,.8));
}
.pm-compare-table tr:last-child td { border-bottom: none; }
.pm-compare-table tr:hover td { background: rgba(255,255,255,.02); }

.pm-ct-link { font-weight: 600; color: var(--white, #fff); text-decoration: none; }
.pm-ct-link:hover { color: #00C2A8; }
.pm-ct-price { font-weight: 700; color: #00C2A8; }
.pm-ct-type  { font-size: .8rem; color: var(--white-60, rgba(255,255,255,.6)); }
.pm-ct-date  { font-size: .78rem; color: var(--white-40, rgba(255,255,255,.4)); white-space: nowrap; }

/* ── /hosting-price-monitor feature page ───────────────────── */
.hpm-page-hero {
  padding: 64px 0 48px;
}
.hpm-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.hpm-page-hero .lead {
  font-size: 1.05rem;
  color: var(--white-60, rgba(255,255,255,.6));
  max-width: 640px;
  line-height: 1.65;
}

.hpm-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.hpm-how-card {
  background: var(--navy-2, #0d1829);
  border: 1px solid var(--border, rgba(255,255,255,.08));
  border-radius: 12px;
  padding: 24px 22px;
}
.hpm-how-card .step {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00C2A8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.hpm-how-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white, #fff);
}
.hpm-how-card p {
  font-size: 0.84rem;
  color: var(--white-60, rgba(255,255,255,.6));
  line-height: 1.55;
  margin: 0;
}

.hpm-providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.hpm-prov-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,168,.08);
  border: 1px solid rgba(0,194,168,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-80, rgba(255,255,255,.8));
}
.hpm-prov-tag .dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.hpm-prov-tag .dot.ok  { background:#00C2A8; }
.hpm-prov-tag .dot.wip { background:#ffc107; }

/* Responsive */
@media (max-width: 640px) {
  .mp-section { padding: 22px 16px; }
  .pm-compare { padding: 20px 16px; }
  .hpm-grid   { grid-template-columns: 1fr 1fr; }
  .mp-section__header,
  .hpm-header,
  .pm-compare__hdr { flex-direction: column; align-items: flex-start; }
}

/* Monitored pricing — top-of-page compact variant */
.mp-section--top {
  margin: 0 0 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  border-top-width: 2px;
}
.mp-section--top .mp-section__title { font-size: 0.95rem; }
.mp-section--top .mp-table th,
.mp-section--top .mp-table td { padding: 0.55rem 0.75rem; font-size: 0.85rem; }

/* Quick summary block */
.cts-quick-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.cts-quick-summary__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.cts-quick-summary__label {
  font-size: 0.7rem;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.cts-quick-summary__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1.3;
}
.cts-quick-summary__value.ok { color: #4ade80; }
.cts-quick-summary__value.warn { color: #f59e0b; }

/* Hosting types compact row */
.cts-hosting-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cts-hosting-type {
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 500;
}

/* Monitored pricing — renewal price column */
.mp-td-renewal { font-size: 0.82rem; color: var(--white-60); }
.mp-renewal-val { color: var(--white-70); }
.mp-renewal-na { color: var(--white-30); font-style: italic; font-size: 0.78rem; }
.mp-price-period { font-size: 0.75rem; color: var(--white-40); margin-left: 2px; }

/* UPDATE 4+5: Pricing summary + verified badge */
.mp-pricing-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.mp-summary-text { font-size: 0.9rem; color: var(--white-70); }
.mp-summary-text strong { color: #fff; }
.mp-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(74,222,128,0.2);
  white-space: nowrap;
}

/* UPDATE 12 how-it-works */
.cts-how-card { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07); border-radius:10px; padding:1.5rem; }
.cts-how-num  { font-size:2rem; font-weight:800; color:var(--accent); opacity:0.6; margin-bottom:0.5rem; }
.cts-how-card h3 { font-size:0.95rem; margin-bottom:0.5rem; }
.cts-how-card p  { font-size:0.82rem; color:var(--white-60); line-height:1.5; }
