.hero-search-bar { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.hero-search-bar-inner { max-width: 640px; margin: 0 auto; }
.hero-search-box { display: flex; border: 2px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--surface); transition: border-color .15s; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.hero-search-box:focus-within { border-color: var(--accent); }
.hero-search-prefix { display: flex; align-items: center; padding: 0 4px 0 14px; font-family: var(--mono); font-size: 13px; color: var(--text-muted); white-space: nowrap; user-select: none; }
.hero-search-input { flex: 1; border: none; outline: none; font-family: var(--mono); font-size: 14px; padding: 13px 6px; background: transparent; color: var(--text); min-width: 0; }
.hero-search-input::placeholder { color: var(--text-muted); font-family: var(--body); font-size: 13px; }
.hero-search-btn { background: var(--accent); color: #fff; border: none; padding: 0 24px; font-family: var(--body); font-weight: 700; font-size: 13px; cursor: pointer; transition: background .15s; white-space: nowrap; }
.hero-search-btn:hover { background: #1558cc; }
.hero-title { font-family: var(--display); font-size: clamp(20px, 3vw, 28px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 6px; line-height: 1.2; }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.section { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.section-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.section-head h2 { font-family: var(--display); font-size: 20px; font-weight: 700; }
.section-head a { font-size: 12px; color: var(--accent); text-decoration: none; font-weight: 500; }
.section-head a:hover { text-decoration: underline; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 24px 20px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 10px; transition: border-color .15s, box-shadow .15s; }
.service-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(27,110,243,.08); }

.section--sm { padding: 24px 24px 8px; }
.service-grid--sm { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.service-card--sm { padding: 14px 16px; gap: 6px; }
.service-card--sm .service-icon { width: 30px; height: 30px; }
.service-card--sm .service-name { font-size: 13px; }
.service-card--sm .service-desc { font-size: 11px; line-height: 1.5; }
@media (max-width: 900px) { .service-grid--sm { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .service-grid--sm { grid-template-columns: repeat(2, 1fr); } }
.service-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card-head { display: flex; align-items: center; gap: 12px; }
.service-name { font-family: var(--display); font-size: 16px; font-weight: 700; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.service-cta { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 4px; }
.home-tld-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1024px) { .home-tld-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .home-tld-grid { grid-template-columns: minmax(0, 1fr); } }

/* ─── CAMPAIGN CAROUSEL ─── */
.carousel-section {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.carousel-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.carousel-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-badge {
  background: var(--red-light);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.carousel-link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.carousel-link:hover { text-decoration: underline; }
.carousel-viewport {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.carousel-slider {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  flex: 0 0 100%;
  min-width: 0;
}
.cp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .15s, border-color .15s;
  display: block;
  min-width: 0;
}
.cp-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(27,110,243,.1);
}
.cp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cp-tld {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
}
.cp-cat {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--red-light);
  color: var(--red);
}
.cp-registrar {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-price {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--red);
}
.cp-price-unit {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 2px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.carousel-note {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px 0;
  font-size: 11px;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 4px;
  }
  .carousel-viewport::-webkit-scrollbar { display: none; }
  .carousel-slider {
    transform: none !important;
    transition: none !important;
    flex-wrap: nowrap;
    width: max-content;
  }
  .carousel-slide {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    flex: none;
    width: auto;
  }
  .cp-card { width: 148px; flex-shrink: 0; }
  .carousel-dots { display: none; }
}
