/* =========================================================
   HERO / SEO POLISH
   ========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-content,
.hero-search-card,
.tlds-items-section .section-title,
.tlds-items-section .section-para {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(120, 90, 255, 0.14), transparent 30%),
    radial-gradient(circle at 40% 80%, rgba(80, 130, 255, 0.10), transparent 24%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hero-buttons .theme-btn {
  min-width: 150px;
}

.search-supporting-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
}

.hero-search-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hero-search-card:hover {
  transform: translateY(-4px);
}

.domain-search-label {
  position: relative;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s ease forwards;
  will-change: transform, opacity;
}

.reveal-up.delay-1 {
  animation-delay: 0.18s;
}

.reveal-up.delay-2 {
  animation-delay: 0.32s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   COMMON HOVER / CARD EFFECTS
   ========================================================= */

.tlds-items-section .box,
.tlds-items-section .item,
.home-products .box,
.actions-section .action-box {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.tlds-items-section .box:hover,
.tlds-items-section .item:hover,
.home-products .box:hover,
.actions-section .action-box:hover {
  transform: translateY(-6px);
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */

.home-products .row {
  justify-content: center;
}

.section-intro {
  max-width: 880px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.92;
}

.home-products .se-title,
.actions-section .se-title {
  text-align: center;
  margin-bottom: 40px;
}

.product-card-seo {
  height: 100%;
}

.product-card-seo .box {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  cursor: pointer;
}

.product-card-seo .box::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 65%);
  pointer-events: none;
  opacity: 0.7;
}

.product-card-seo .text {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.product-card-seo .box-title {
  min-height: 64px;
  line-height: 1.25;
}

.product-card-seo .box-para {
  line-height: 1.7;
}

.product-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.home-products .box:hover {
  transform: translateY(-8px);
}

/* =========================================================
   QUICK ACTIONS SECTION
   ========================================================= */

.action-box {
  padding: 25px 20px;
  border-radius: 14px;
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.action-box .box-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.action-box > *:not(.box-link) {
  position: relative;
  z-index: 2;
}

.action-box .box-text {
  font-size: 18px;
  font-weight: 700;
}

.action-box .box-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  opacity: 0.85;
}

.action-box .box-img {
  margin-bottom: 12px;
}

.action-box:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

/* =========================================================
   TLD SECTION
   ========================================================= */

.tlds-items-section .section-para {
  line-height: 1.7;
}

/* =========================================================
   FOOTER – PREMIUM DARK
   ========================================================= */

.theme-footer {
  position: relative;
  background: linear-gradient(180deg, #06060a 0%, #0c0c14 100%);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.theme-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 90, 255, 0.15), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(80, 130, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.theme-footer > .container,
.theme-footer .footer-bottom,
.theme-footer .items-group,
.theme-footer .footer-seo-text {
  position: relative;
  z-index: 2;
}

/* =========================================================
   FOOTER SEO TEXT
   ========================================================= */

.footer-seo-text {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.footer-seo-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #b7a6ff;
  margin-bottom: 12px;
}

.footer-seo-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  opacity: 1;
}

/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-list .list-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.footer-list .list-link a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-list .list-link a:hover,
.footer-list .list-link a:focus {
  color: #b7a6ff;
  transform: translateX(3px);
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.theme-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 25px;
}

.theme-footer .copyright p,
.theme-footer .para-3 {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px;
}

.theme-footer .logo img {
  filter: drop-shadow(0 0 8px rgba(120, 90, 255, 0.2));
}

/* =========================================================
   SOCIAL MEDIA ICONS
   ========================================================= */

.theme-footer .social-list {
  gap: 10px;
}

.theme-footer .social-list li {
  margin: 0;
}

.theme-footer .social-list a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
  transition: all 0.25s ease;
}

.theme-footer .social-list a:hover,
.theme-footer .social-list a:focus {
  color: #ffffff;
  background: rgba(120, 90, 255, 0.22);
  border-color: rgba(183, 166, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(120, 90, 255, 0.18);
}

.theme-footer .social-list i,
.theme-footer .social-list svg,
.theme-footer .social-list img {
  max-width: 18px;
  max-height: 18px;
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */

@media (max-width: 1199.98px) {
  .product-card-seo .box-title {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-intro {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 767.98px) {
  .hero-badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  .search-supporting-text,
  .section-intro,
  .product-card-seo .box-para,
  .tlds-items-section .section-para,
  .action-box .box-desc,
  .footer-seo-text p {
    font-size: 15px;
  }

  .home-products .se-title,
  .actions-section .se-title {
    margin-bottom: 30px;
  }

  .footer-seo-text {
    padding: 0 15px;
  }

  .footer-list {
    text-align: center;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.delay-1,
  .reveal-up.delay-2 {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-search-card,
  .tlds-items-section .box,
  .tlds-items-section .item,
  .home-products .box,
  .actions-section .action-box {
    transition: none;
  }
}
/* =========================================================
   SOCIAL ICONS – FINAL POLISH
   ========================================================= */

.theme-footer .social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.theme-footer .social-list li {
  list-style: none;
}

.theme-footer .social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);

  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;

  transition: all 0.25s ease;
}

/* 🔥 hover – robi robotę */
.theme-footer .social-link:hover,
.theme-footer .social-link:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #6a5cff, #8a7dff);
  border-color: rgba(183, 166, 255, 0.5);

  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(120, 90, 255, 0.25);
}

/* 👇 ikona */
.theme-footer .social-link i {
  pointer-events: none;
}