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

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #212529;
  margin: 0;
}

/* === HEADER === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-text span { color: #4ade80; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }

.nav-link-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  transition: color 0.2s;
}
.nav-link-item:hover { color: #fff; }

.nav-cta {
  background: #198754;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #157347; color: #fff; }

/* === HERO === */
.hero-wrap { background: #0a0e1a; }

.hero-content {
  padding: 5rem 1rem 6rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: normal;
  color: #4ade80;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 1.75rem 1rem;
}

.trust-bar strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #198754;
}

.trust-bar span {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.2rem;
}

/* === SECTION BASE === */
.py-section { padding: 5rem 0; }

.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.section-sub { font-size: 1rem; color: #6c757d; margin-top: 0.5rem; }

/* === HOSTING CARDS === */
.hosting-card {
  border: 1px solid #dee2e6;
  border-radius: 0.875rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}
.hosting-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hosting-card--featured { border: 2px solid #198754; }

.card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #198754;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hosting-card .card-body { padding: 2rem; }

.price { margin: 0.75rem 0 0.5rem; }
.price .amount { font-size: 2.1rem; font-weight: 700; color: #212529; }
.price .period { font-size: 0.9rem; color: #6c757d; }

.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.feature-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.875rem;
  color: #495057;
}
.feature-list li::before { content: "✓ "; color: #198754; font-weight: 700; }
.feature-list li:last-child { border-bottom: none; }

/* === DARK SECTIONS === */
.dark-section {
  background: #0a0e1a;
  color: #fff;
  padding: 4.5rem 1rem;
}
.dark-section .blockquote { color: #fff; }
.dark-section .blockquote-footer { color: rgba(255, 255, 255, 0.55); }

/* === TESTIMONIAL === */
.testimonial-section {
  background: #f8f9fa;
  padding: 4rem 1rem;
}

/* === SERVICE CARDS === */
.service-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border-radius: 0.875rem;
  border: 1px solid #dee2e6;
  height: 100%;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07); }

.service-icon {
  color: #198754;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #212529;
}
.service-card p { font-size: 0.9rem; color: #6c757d; margin: 0; line-height: 1.6; }

/* === WHY LIST === */
.why-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.why-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.why-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: 700;
}
.why-list li strong { color: #212529; }

/* === STATS GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-box {
  background: #f8f9fa;
  border-radius: 0.875rem;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid #dee2e6;
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #198754;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

/* === CTA SECTION === */
.cta-section { padding: 5rem 1rem; }

/* === ACCORDION === */
.accordion-button { font-weight: 500; }
.accordion-button:not(.collapsed) {
  color: #198754;
  background-color: #f0faf4;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); }
.accordion-button::after {
  filter: hue-rotate(90deg);
}

/* === FOOTER === */
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #adb5bd;
  margin-bottom: 1rem;
}
.footer-link {
  color: #adb5bd;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

/* === PAGE HERO (inner pages, smaller than homepage) === */
.page-hero {
  padding: 4rem 1rem 5rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero .page-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* === PROCESS STEPS === */
.process-steps { counter-reset: step; list-style: none; padding: 0; }
.process-step {
  position: relative;
  padding: 0 0 2rem 4.5rem;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.process-step::after {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 2.75rem;
  width: 2px;
  height: calc(100% - 2.75rem);
  background: #dee2e6;
}
.process-step:last-child::after { display: none; }
.process-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: #6c757d; margin: 0; }

/* === TLD CARDS (domains page) === */
.tld-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.875rem;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tld-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.tld-ext { font-size: 1.75rem; font-weight: 700; color: #0a0e1a; display: block; }
.tld-from { font-size: 0.72rem; color: #adb5bd; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 0.5rem; }
.tld-price { font-size: 1.2rem; font-weight: 700; color: #198754; display: block; }
.tld-period { font-size: 0.8rem; color: #6c757d; display: block; }

/* === FEATURE CHECK/CROSS === */
.feat-yes { color: #198754; font-weight: 700; }
.feat-no  { color: #adb5bd; }

/* === BREADCRUMB === */
.breadcrumb-wrap {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 0.6rem 0;
  font-size: 0.82rem;
}
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: #198754; text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .stat-number { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .main-nav { gap: 0; }
  .nav-link-item { padding: 0.4rem 0.5rem; font-size: 0.82rem; }
  .process-step { padding-left: 3.75rem; }
}
