/**
 * Support Center page – support-center.php only
 */
:root {
  --sup-navy: #071a42;
  --sup-blue: #0b2b6f;
  --sup-accent: #0062ff;
  --sup-primary: #ffb302;
  --sup-primary-dark: #e6a000;
  --sup-muted: #5c6370;
  --sup-radius: 16px;
  --sup-shadow: 0 12px 40px rgba(11, 43, 111, 0.1);
  --section-y: clamp(64px, 8vw, 88px);
}

.page-support main {
  overflow-x: hidden;
}

/* ── Hero ── */
.sup-hero {
  background: linear-gradient(125deg, #0040c1 0%, #0b2b6f 48%, #071a42 100%);
  padding: var(--section-y) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 30%, rgba(255, 179, 2, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7, 26, 66, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.sup-hero .container {
  position: relative;
  z-index: 1;
}

.sup-hero__badge {
  display: inline-block;
  background: rgba(255, 179, 2, 0.15);
  border: 1px solid rgba(255, 179, 2, 0.4);
  color: var(--sup-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 16px;
}

.sup-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 16px;
  max-width: 580px;
  letter-spacing: -0.02em;
}

.sup-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 18px;
}

.sup-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.sup-hero__trust li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sup-hero__trust li i {
  color: var(--sup-primary);
  font-size: 12px;
}

.sup-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
  border: 2px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.sup-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.sup-btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.sup-btn--whatsapp:hover {
  background: #1fb855;
  color: #fff;
}

.sup-btn--telegram {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.sup-btn--telegram:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sup-btn--primary {
  background: var(--sup-primary);
  color: var(--sup-navy);
  box-shadow: 0 8px 24px rgba(255, 179, 2, 0.35);
}

.sup-btn--primary:hover {
  background: var(--sup-primary-dark);
  color: var(--sup-navy);
}

.sup-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.sup-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sup-hero__img-wrap {
  position: relative;
}

.sup-hero__img-frame {
  position: relative;
  border-radius: calc(var(--sup-radius) + 2px);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sup-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Sections ── */
.sup-section {
  padding: var(--section-y) 0;
}

.sup-section--alt {
  background: #f8f9fc;
}

.sup-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 44px);
}

.sup-section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.sup-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sup-blue);
  margin-bottom: 10px;
}

.sup-section__head h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.sup-section__head p {
  color: var(--sup-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Support category cards ── */
.sup-cat__grid .col-md-6,
.sup-cat__grid .col-lg-3 {
  display: flex;
}

.sup-cat {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--sup-radius) + 2px);
  padding: 22px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(11, 43, 111, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sup-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 43, 111, 0.12);
  border-color: rgba(11, 43, 111, 0.12);
}

.sup-cat__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 98, 255, 0.12) 0%, rgba(11, 43, 111, 0.06) 100%);
  color: var(--sup-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.sup-cat__label {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 179, 2, 0.15);
  color: #92400e;
  margin-bottom: 10px;
}

.sup-cat h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 8px;
}

.sup-cat > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sup-muted);
  margin-bottom: 14px;
}

.sup-cat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.sup-cat__list li {
  font-size: 13px;
  color: var(--sup-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.sup-cat__list li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--sup-primary-dark);
  font-size: 11px;
}

/* ── Before contact checklist ── */
.sup-before {
  background: linear-gradient(165deg, #fff 0%, #f8faff 100%);
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--sup-radius) + 2px);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--sup-shadow);
  max-width: 720px;
  margin: 0 auto;
}

.sup-before h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 8px;
  text-align: center;
}

.sup-before > p {
  text-align: center;
  color: var(--sup-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.sup-before__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.sup-before__list li {
  font-size: 14px;
  color: var(--sup-navy);
  font-weight: 600;
  padding: 12px 14px 12px 40px;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 10px;
  position: relative;
  line-height: 1.5;
}

.sup-before__list li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #15803d;
  font-size: 13px;
}

.sup-before__note {
  text-align: center;
  font-size: 13px;
  color: var(--sup-muted);
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 179, 2, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--sup-primary);
}

/* ── Contact channels ── */
.sup-contact__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 992px) {
  .sup-contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sup-channel {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--sup-radius) + 2px);
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(11, 43, 111, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sup-channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11, 43, 111, 0.11);
}

.sup-channel--featured {
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.1);
}

.sup-channel__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.sup-channel__badge--fast {
  background: rgba(37, 211, 102, 0.15);
  color: #15803d;
}

.sup-channel__badge--alt {
  background: rgba(0, 136, 204, 0.12);
  color: #0369a1;
}

.sup-channel__badge--email {
  background: rgba(11, 43, 111, 0.08);
  color: var(--sup-blue);
}

.sup-channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.sup-channel--featured .sup-channel__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.sup-channel:nth-child(2) .sup-channel__icon {
  background: rgba(0, 136, 204, 0.12);
  color: #0088cc;
}

.sup-channel:nth-child(3) .sup-channel__icon {
  background: rgba(11, 43, 111, 0.08);
  color: var(--sup-blue);
}

.sup-channel h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 6px;
}

.sup-channel__response {
  font-size: 12px;
  font-weight: 600;
  color: var(--sup-muted);
  margin-bottom: 10px;
}

.sup-channel__link {
  font-size: 15px;
  font-weight: 700;
  color: var(--sup-blue);
  text-decoration: none;
  margin-bottom: 16px;
  word-break: break-word;
}

.sup-channel__link:hover {
  text-decoration: underline;
}

.sup-channel .sup-btn {
  margin-top: auto;
  width: 100%;
}

/* ── Faster support checklist ── */
.sup-prep {
  background: linear-gradient(135deg, var(--sup-navy) 0%, var(--sup-blue) 100%);
  color: #fff;
  border-radius: calc(var(--sup-radius) + 4px);
  padding: clamp(28px, 5vw, 40px);
  box-shadow: 0 20px 56px rgba(11, 43, 111, 0.2);
}

.sup-prep h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.sup-prep > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sup-prep__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

@media (min-width: 768px) {
  .sup-prep__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sup-prep__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 14px 12px 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  line-height: 1.5;
}

.sup-prep__list li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--sup-primary);
  font-size: 12px;
}

/* ── Troubleshooting ── */
.sup-trouble__grid .col-md-6,
.sup-trouble__grid .col-lg-4 {
  display: flex;
}

.sup-trouble {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--sup-radius) + 2px);
  padding: 22px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(11, 43, 111, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sup-trouble:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 43, 111, 0.1);
}

.sup-trouble h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 12px;
}

.sup-trouble dl {
  margin: 0 0 16px;
  flex: 1;
}

.sup-trouble dt {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sup-muted);
  margin-bottom: 4px;
}

.sup-trouble dd {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sup-navy);
  margin: 0 0 12px;
}

.sup-trouble__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sup-blue);
  text-decoration: none;
  margin-top: auto;
}

.sup-trouble__link:hover {
  text-decoration: underline;
}

/* ── Support process timeline ── */
.sup-process {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sup-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.sup-process__step {
  position: relative;
  text-align: center;
  padding: 20px 14px;
}

@media (min-width: 768px) {
  .sup-process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -8px;
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--sup-primary) 0%, rgba(255, 179, 2, 0.2) 100%);
    transform: translateX(50%);
    z-index: 0;
  }
}

.sup-process__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sup-blue) 0%, var(--sup-navy) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(11, 43, 111, 0.2);
}

.sup-process__step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 8px;
}

.sup-process__step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sup-muted);
  margin: 0;
}

/* ── SEO content ── */
.sup-seo {
  max-width: 820px;
  margin: 0 auto;
}

.sup-seo h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--sup-navy);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.sup-seo h2:first-child {
  margin-top: 0;
}

.sup-seo h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sup-navy);
  margin: 24px 0 10px;
}

.sup-seo p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--sup-muted);
  margin-bottom: 12px;
}

.sup-seo a {
  color: var(--sup-blue);
  font-weight: 600;
}

/* ── Reassurance ── */
.sup-reassure {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(165deg, #fff 0%, #f8faff 100%);
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--sup-radius) + 4px);
  box-shadow: var(--sup-shadow);
}

.sup-reassure__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 179, 2, 0.15);
  color: var(--sup-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.sup-reassure h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--sup-navy);
  margin-bottom: 12px;
}

.sup-reassure p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sup-muted);
  margin: 0;
}

/* ── FAQ ── */
.sup-faq .accordion-items {
  border: 1px solid #e8ecf4;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.sup-faq .accordion-buttons {
  font-size: 15px;
  font-weight: 600;
  padding: 18px 48px 18px 20px;
  color: var(--sup-navy);
  width: 100%;
  text-align: left;
  min-height: 56px;
  display: flex;
  align-items: center;
  background: transparent;
}

.sup-faq .accordion-buttons:not(.collapsed) {
  color: var(--sup-blue);
  background: rgba(11, 43, 111, 0.04);
}

.sup-faq .accordion-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sup-muted);
  padding: 0 20px 18px;
}

/* ── Final CTA ── */
.sup-cta {
  background: linear-gradient(135deg, var(--sup-navy) 0%, var(--sup-blue) 55%, #1a4a9e 100%);
  padding: clamp(56px, 8vw, 72px) 0;
  color: #fff;
}

.sup-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sup-cta h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.sup-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.sup-cta__trust {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sup-primary);
  margin-bottom: 22px;
}

.sup-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sup-cta__actions .sup-btn {
  flex: 1 1 200px;
  max-width: 280px;
}

/* ── Floating buttons ── */
.page-support .floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-support .floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease;
}

.page-support .floating-contact a:hover {
  transform: translateY(-3px);
}

.page-support .floating-contact .btn-whatsapp { background: #25d366; }
.page-support .floating-contact .btn-telegram { background: #0088cc; }

.page-support .floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.page-support .back-to-top-wrapper.back-to-top-btn-show {
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 124px);
  z-index: 999;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .sup-hero__img-wrap {
    margin-top: 28px;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .sup-hero__actions {
    flex-direction: column;
  }

  .sup-hero__actions .sup-btn {
    width: 100%;
  }

  .sup-hero__img-wrap.d-lg-block {
    display: none !important;
  }

  .sup-cta__actions .sup-btn {
    max-width: none;
    width: 100%;
  }

  .sup-process__step:not(:last-child) {
    padding-bottom: 28px;
    border-bottom: 1px dashed #dce3ef;
    margin-bottom: 8px;
  }
}
