/* home page only (linked from index.html after responsive.css) */

:root {
  --pk-primary: #0073ec;
  --pk-primary-2: #2563eb;
  --pk-ink: #0f172a;
  --pk-text: #475569;
  --pk-muted: #64748b;
  --pk-border: #e2e8f0;
  --pk-border-hover: #cfe0f7;
  --pk-soft-bg: #f6f8fc;
  --pk-tint: #f5f9ff;
  --pk-radius: 18px;
  --pk-shadow: 0 14px 34px rgba(15, 45, 90, 0.07);
  --pk-shadow-hover: 0 22px 48px rgba(0, 115, 236, 0.14);
}

/* sections: white / grey */
.main > .promo-section,
.main > .solution-cards-section,
.main > .optimize-reasons-section,
.main > .pricing-section,
.main > .faq-section {
  background: #ffffff;
}
.main > .our-services,
.main > .why-piko-section,
.main > .feature-section {
  background: var(--pk-soft-bg);
}

.main .section-heading h2 {
  color: var(--pk-ink);
  font-weight: 800;
  line-height: 1.6;
  text-wrap: balance;
}
.main .section-heading .lead {
  color: var(--pk-muted);
  font-size: 1.05rem;
  line-height: 1.95;
  text-wrap: pretty;
}

/* hero */
.hero-equal-height .hero-content-wrap {
  padding: 34px 32px;
  border-radius: 20px;
}
.hero-content-wrap h1 {
  font-size: clamp(1.7rem, 1.1rem + 1.7vw, 2.5rem);
  line-height: 1.6;
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 12px;
}
.hero-content-wrap .lead {
  opacity: 0.9;
}

.domain-search-form .input-group {
  flex-wrap: nowrap;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.domain-search-form input.form-control {
  height: 52px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}
.domain-search-form button.search-btn {
  height: 52px;
  border: 0;
  border-radius: 0;
  padding-inline: 22px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pk-primary), var(--pk-primary-2));
}
.domain-search-form .btn-hover:before,
.domain-search-form .btn-hover:after {
  border-radius: 0;
}

.hero-content-wrap .domain-list-wrap {
  margin-top: 22px !important;
}
.hero-content-wrap .domain-search-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}
.hero-content-wrap .domain-search-list li {
  margin: 0 !important;
}
.hero-content-wrap .domain-search-list li:after {
  display: none;
}
.hero-content-wrap .domain-search-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 10px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-content-wrap .domain-search-list li a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}
.hero-content-wrap .domain-search-list li a img {
  width: 58px;
}
.hero-content-wrap .domain-search-list li a span {
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .hero-equal-height .animation-image-wrap {
    max-width: 340px;
    margin: 32px auto 0;
  }
}
@media (max-width: 575.98px) {
  .hero-equal-height .hero-content-wrap {
    padding: 22px 18px;
  }
  /* responsive.css hides the 5th domain on phones, so 2x2 */
  .hero-content-wrap .domain-search-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* cards */
.promo-section .single-promo-2,
.our-services .single-service-plane,
.feature-section .features-box {
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius) !important;
  background: #ffffff;
  box-shadow: var(--pk-shadow) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.promo-section .single-promo-2:hover,
.our-services .single-service-plane:hover,
.feature-section .features-box:hover {
  transform: translateY(-6px);
  border-color: var(--pk-border-hover);
  box-shadow: var(--pk-shadow-hover) !important;
}

.promo-section .single-promo-2 h5,
.our-services .single-service-plane h3,
.feature-section .features-box h5 {
  color: var(--pk-ink);
  font-weight: 800;
  margin-bottom: 10px;
}
.promo-section .single-promo-2 p,
.our-services .single-service-plane p,
.feature-section .features-box p {
  color: var(--pk-text);
  line-height: 1.9;
  margin-bottom: 0;
}
.promo-section a:hover {
  text-decoration: none;
}

.promo-section .single-promo-2 {
  padding: 2.25rem 1.75rem !important;
}
.promo-section .circle-icon {
  margin-bottom: 20px;
}
.promo-section .single-promo-2 .circle-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  font-size: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0073ec 0%, #4f9bff 100%);
  box-shadow: 0 14px 28px rgba(0, 115, 236, 0.25);
}

.our-services .row > [class*='col-'],
.feature-section .row > [class*='col-'] {
  display: flex;
}
.our-services .single-service-plane {
  width: 100%;
  padding: 2.25rem 1.75rem !important;
}
.feature-section .features-box {
  width: 100%;
  margin-bottom: 24px;
}
.feature-section .features-box-icon {
  padding-inline-end: 18px;
}
@media (max-width: 767.98px) {
  .feature-section .features-box {
    margin-bottom: 0;
  }
}

/* pricing - .pricing-header .price (style.css) beat .yearly-price { display: none },
   and scripts.js toggles with inline display:block */
.pricing-header .yearly-price {
  display: none;
}
.pricing-header .monthly-price[style*='block'],
.pricing-header .yearly-price[style*='block'] {
  display: inline-flex !important;
}

/* faq */
.faq-section .accordion-faq .card {
  background: #ffffff;
  border: 1px solid var(--pk-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-section .accordion-faq .card:hover {
  border-color: var(--pk-border-hover);
  box-shadow: var(--pk-shadow);
}
.faq-section .accordion-faq .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 0;
  color: var(--pk-ink);
  text-decoration: none;
}
.faq-section .accordion-faq .card-header h6 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--pk-ink);
}
.faq-section .accordion-faq .card-header:not(.collapsed) {
  background: var(--pk-tint);
}
.faq-section .accordion-faq .card-header:not(.collapsed) h6 {
  color: var(--pk-primary);
}
.faq-section .accordion-faq .card-header:after {
  float: none;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: var(--pk-primary);
  font-size: 12px;
}
.faq-section .accordion-faq .card-body {
  padding: 0 22px 20px;
  background: var(--pk-tint);
}
.faq-section .accordion-faq .card-body p {
  color: var(--pk-text);
  line-height: 2;
  margin-bottom: 0;
}
.faq-section .faq-more {
  margin-top: 24px;
  text-align: center;
  color: var(--pk-muted);
}
.faq-section .faq-more a {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .promo-section .single-promo-2,
  .our-services .single-service-plane,
  .feature-section .features-box {
    transition: none;
  }
  .promo-section .single-promo-2:hover,
  .our-services .single-service-plane:hover,
  .feature-section .features-box:hover {
    transform: none;
  }
}
