/* ===== Gift Cards page – premium fintech hero (Swix violet) ===== */
:root {
  --gc-violet: #6C3BFF;
  --gc-violet-end: #8A5CFF;
  --gc-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gc-text: #0f172a;
  --gc-muted: #64748b;
  --gc-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  --gc-shadow-btn: 0 4px 16px rgba(108, 59, 255, 0.35);
}

.page-gift-cards main {
  padding-top: 72px;
  font-family: var(--gc-font);
}

/* ---------- Hero ---------- */
.gc-hero {
  position: relative;
  padding: 56px 24px 72px;
  overflow: hidden;
}

.gc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fafbff 0%, #f5f3ff 50%, #fff 100%);
  pointer-events: none;
}

.gc-hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 59, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gc-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 92, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.gc-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gc-hero-content {
  text-align: left;
}

.gc-hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--gc-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}

.gc-hero-title-accent {
  color: var(--gc-violet);
}

.gc-hero-desc {
  font-size: 1.125rem;
  color: var(--gc-muted);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 440px;
}

.gc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--gc-font);
  color: #fff;
  background: linear-gradient(135deg, var(--gc-violet) 0%, var(--gc-violet-end) 100%);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--gc-shadow-btn);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.gc-hero-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108, 59, 255, 0.4);
}

.gc-hero-cta:focus-visible {
  outline: 2px solid var(--gc-violet);
  outline-offset: 2px;
}

.gc-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gc-hero-img {
  max-width: 100%;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--gc-shadow);
  animation: gc-float 4s ease-in-out infinite;
}

@keyframes gc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .gc-hero {
    padding: 48px 24px 64px;
  }
  .gc-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .gc-hero-content {
    text-align: center;
  }
  .gc-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .gc-hero-media {
    order: 0;
  }
  .gc-hero-content {
    order: 1;
  }
}

@media (max-width: 575px) {
  .gc-hero {
    padding: 40px 16px 56px;
  }
  .gc-hero-title {
    margin-bottom: 20px;
  }
  .gc-hero-desc {
    margin-bottom: 28px;
    font-size: 1rem;
  }
  .gc-hero-cta {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }
  .gc-hero-inner {
    text-align: center;
  }
  .gc-hero-cta {
    margin: 0 auto;
  }
}
