/* ===== Sidify Support Page (v2) ===== */
.sidify-support-v2 {
  --sp-green: #24d66b;
  --sp-green-dark: #18b85a;
  --sp-border: #e9edf1;
  color: #101828;
}

.support-shell {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Intro + Hero */
.support-intro-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  background: #fff;
  padding-bottom: 82px;
}

.support-intro-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 48%;
  background:
    radial-gradient(circle at 0 100%, rgba(189, 239, 205, .31) 0, rgba(189, 239, 205, .14) 21%, transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(189, 239, 205, .20) 0, rgba(189, 239, 205, .09) 24%, transparent 25%),
    linear-gradient(180deg, #eaf8ef 0%, #f6fbf8 100%);
}

.support-hero {
  position: relative;
  padding: 90px 0 58px;
}

.support-hero::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 50px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
}

.support-hero::after {
  content: "";
  position: absolute;
  right: 88px;
  top: 50px;
  width: 104px;
  height: 84px;
  opacity: .95;
  background-image: radial-gradient(#fff 1.8px, transparent 1.8px);
  background-size: 16px 16px;
}

.support-hero h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(52px, 5.2vw, 82px);
  line-height: 1.04;
  font-weight: 800;
  color: #101828;
}

.support-hero p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.7;
  color: #667085;
}

/* Shared card surface */
.shortcut-card,
.product-card {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(15, 23, 42, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.shortcut-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

/* Shortcut cards */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.shortcut-card {
  min-height: 218px;
}

.shortcut-card a {
  width: 100%;
  height: 100%;
  padding: 36px 26px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.shortcut-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.shortcut-card h3 {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 550;
  color: #111827;
}

.shortcut-card h3 i {
  font-size: 22px;
}

.i-download { background: #e8f9ee; color: #1fc75d; }
.i-tips { background: #fff4dc; color: #f7a40d; }
.i-video { background: #f3e9ff; color: #963df5; }
.i-about { background: #eaf1ff; color: #5d87ff; }
.i-license { background: #e8f9ee; color: #21cd5d; }
.i-affiliate { background: #eaf4ff; color: #5390ff; }
.i-subscription { background: #ffedf0; color: #ff4a67; }
.i-refund { background: #ffedf0; color: #ff4b5f; }

/* Product help */
.section-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
}

.support-faq-area .sec-title {
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 800;
}

.product-help {
  padding-top: 78px;
  padding-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 246px;
}

.product-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 7px 0 25px;
}

.product-card h3 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 700;
  color: #111827;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.product-btn {
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid #27ce68;
  background: #f2fff6;
  color: #19b75a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.product-btn:hover {
  border-color: #20c663;
  background: #22cb66;
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 203, 102, .22);
}

.product-btn i {
  font-size: 17px;
}

/* FAQ */
.support-faq-area {
  padding-top: 76px;
  padding-bottom: 76px;
}

.support-faq-area .title-area {
  margin-bottom: 44px;
}

.support-faq-area .sub-title {
  color: var(--sp-green-dark);
}

.support-faq-area .accordion-card.style7 {
  border-color: var(--sp-border);
  box-shadow: 0 8px 26px rgba(15, 23, 42, .035);
}

.support-faq-area .accordion-button:not(.collapsed) {
  color: #fff;
}

/* Contact */
.contact-wrap {
  padding-top: 14px;
  padding-bottom: 52px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 42px 54px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(90deg, #8ddf4d 0%, #2cc66f 38%, #07936f 100%);
  box-shadow: 0 24px 54px rgba(8, 117, 81, .16);
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  opacity: .2;
  background-image: radial-gradient(rgba(255, 255, 255, .95) 2px, transparent 2px);
}

.contact-card::before {
  left: 36px;
  top: 36px;
  width: 86px;
  height: 112px;
  opacity: .22;
  background-size: 28px 28px;
}

.contact-card::after {
  right: 64px;
  bottom: 56px;
  width: 148px;
  height: 86px;
  opacity: .18;
  background-size: 24px 24px;
}

.contact-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-visual::before,
.contact-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .26);
}

.contact-visual::before {
  width: 470px;
  height: 470px;
}

.contact-visual::after {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 255, 255, .18);
}

.contact-platform {
  position: absolute;
  bottom: 40px;
  width: 390px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .12));
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, .2), 0 10px 28px rgba(23, 131, 77, .28);
}

.contact-icon {
  position: relative;
  z-index: 2;
  width: 262px;
  height: 262px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #edf9ef 72%, #e0f7e6 100%);
  color: #17c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 130px;
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, .42),
    0 0 0 44px rgba(255, 255, 255, .16),
    0 24px 54px rgba(10, 95, 59, .20);
}

.contact-float {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18c75d;
  font-size: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .34));
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, .4), 0 14px 28px rgba(12, 108, 63, .16);
  backdrop-filter: blur(8px);
}

.float-chat { left: 52px; top: 70px; }
.float-music { right: 52px; top: 92px; }
.float-note { left: 18px; bottom: 118px; }
.float-shield { right: 40px; bottom: 96px; }

.contact-spark {
  position: absolute;
  color: rgba(255, 255, 255, .95);
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, .35);
}

.spark-a { left: 58px; top: 172px; }
.spark-b { right: 22px; top: 238px; font-size: 36px; }

.contact-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-content h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.contact-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.6;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-badge {
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .08);
}

.contact-badge i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1ebf66;
  font-size: 14px;
}

.contact-btn {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 46px;
  align-items: center;
  column-gap: 22px;
  width: 100%;
  max-width: 680px;
  height: 84px;
  padding: 0 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  color: #1ac861;
  text-decoration: none;
  text-align: left;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 20px 42px rgba(8, 83, 57, .18), inset 0 -6px 14px rgba(130, 240, 165, .10);
}

.contact-btn:hover {
  color: #14be59;
  transform: translateY(-1px);
}

.contact-btn-title {
  white-space: nowrap;
}

.contact-btn-email {
  min-width: 0;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eefaf2;
  color: #667085;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.contact-btn-email i {
  font-size: 16px;
  color: #1ac861;
}

.contact-btn-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1ac861;
  color: #fff;
  transition: transform .2s ease, background-color .2s ease;
}

.contact-btn-arrow i {
  font-size: 20px;
  color: #fff;
}

.contact-btn:hover .contact-btn-arrow {
  transform: translateX(3px);
  background: #14b957;
}

.contact-meta {
  margin-top: 16px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-meta i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
}

.contact-meta strong {
  color: #fff;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1399px) {
  .contact-card {
    grid-template-columns: 1fr 1.08fr;
    padding: 38px 42px;
  }

  .contact-visual { min-height: 390px; }
  .contact-visual::before { width: 420px; height: 420px; }
  .contact-visual::after { width: 320px; height: 320px; }
  .contact-platform { width: 340px; }
  .contact-icon { width: 230px; height: 230px; font-size: 118px; }
}

@media (max-width: 1199px) {
  .support-intro-area { min-height: auto; }

  .shortcut-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-visual { min-height: 360px; }
}

@media (max-width: 991px) {
  .support-hero { padding: 70px 0 48px; }
  .support-hero p { font-size: 20px; }

  .shortcut-card { min-height: 190px; }
  .shortcut-card h3 { font-size: 25px; }

  .section-title,
  .support-faq-area .sec-title { font-size: 40px; }
  .contact-content h2 { font-size: 40px; }

  .contact-card {
    padding: 32px 28px;
    border-radius: 28px;
  }

  .contact-visual { min-height: 300px; }
  .contact-visual::before { width: 320px; height: 320px; }
  .contact-visual::after { width: 248px; height: 248px; }
  .contact-platform { width: 270px; height: 54px; bottom: 26px; }

  .contact-icon {
    width: 180px;
    height: 180px;
    font-size: 92px;
    box-shadow:
      0 0 0 12px rgba(255, 255, 255, .42),
      0 0 0 30px rgba(255, 255, 255, .14),
      0 20px 42px rgba(10, 95, 59, .20);
  }

  .contact-float {
    width: 66px;
    height: 66px;
    font-size: 28px;
    border-radius: 20px;
  }

  .contact-content p { font-size: 17px; }

  .contact-badge {
    height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }

  .contact-btn {
    grid-template-columns: auto 1fr 42px;
    column-gap: 14px;
    height: 74px;
    font-size: 22px;
  }

  .contact-btn-email {
    padding: 8px 12px;
    font-size: 14px;
  }

  .contact-btn-arrow {
    width: 42px;
    height: 42px;
  }

  .contact-meta { font-size: 15px; }
}

@media (max-width: 767px) {
  .support-shell { padding: 0 14px; }

  .support-intro-area {
    padding-bottom: 54px;
  }

  .support-intro-area::before {
    height: 30%;
  }

  .support-hero h1 { font-size: 44px; }
  .support-hero p { font-size: 17px; }

  .shortcut-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shortcut-card { min-height: 174px; }
  .shortcut-icon { width: 78px; height: 78px; font-size: 32px; }

  .product-help { padding-top: 54px; }
  .product-card h3 { min-height: auto; font-size: 22px; }

  .section-title,
  .support-faq-area .sec-title { font-size: 32px; }
  .contact-content h2 { font-size: 32px; }

  .contact-wrap { padding-bottom: 34px; }

  .contact-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-card::before,
  .contact-card::after {
    display: none;
  }

  .contact-visual { min-height: 250px; }
  .contact-visual::before { width: 250px; height: 250px; }
  .contact-visual::after { width: 190px; height: 190px; }
  .contact-platform { width: 210px; height: 42px; bottom: 24px; }
  .contact-icon { width: 150px; height: 150px; font-size: 76px; }

  .contact-float {
    width: 54px;
    height: 54px;
    font-size: 22px;
    border-radius: 16px;
  }

  .float-chat { left: 24px; top: 36px; }
  .float-music { right: 24px; top: 48px; }
  .float-note { left: 8px; bottom: 76px; }
  .float-shield { right: 10px; bottom: 70px; }

  .contact-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-badges {
    gap: 12px;
    margin-bottom: 22px;
  }

  .contact-badge {
    width: 100%;
    justify-content: center;
    font-size: 17px;
  }

  .contact-btn {
    grid-template-columns: 1fr 40px;
    height: 68px;
    padding: 0 24px;
    font-size: 20px;
  }

  .contact-btn-email { display: none; }

  .contact-btn-arrow {
    width: 40px;
    height: 40px;
  }

  .contact-btn-arrow i { font-size: 20px; }

  .contact-meta { font-size: 14px; }
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.footer-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
