* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: clip;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 8% 2%, rgba(242, 178, 13, 0.2), transparent 26%),
    radial-gradient(
      circle at 88% 10%,
      rgba(73, 53, 132, 0.16),
      transparent 32%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  line-height: 1.6;
}

* {
  scrollbar-color: var(--accent) #efe8fb;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #efe8fb;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), #8f7ae6);
  border-radius: 999px;
  border: 2px solid #efe8fb;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8f7ae6, var(--accent));
}

main:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100vw - 24px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
}

.site-shell::before {
  top: 140px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(242, 178, 13, 0.08),
    transparent 70%
  );
}

.site-shell::after {
  right: -100px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(73, 53, 132, 0.08), transparent 72%);
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(44, 29, 77, 0.08);
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(44, 29, 77, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.015em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex-wrap: nowrap;
  margin-left: auto;
  padding: 0;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav .btn {
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.site-nav a:hover:not(.btn) {
  color: var(--ink);
  background: rgba(44, 29, 77, 0.05);
}

.site-nav a.is-active:not(.btn) {
  color: var(--ink);
  font-weight: 700;
  background: rgba(44, 29, 77, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.83rem;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd467, var(--brand));
  color: #1c1300;
}

.btn-primary:not(.header-cta) {
  position: relative;
  overflow: hidden;
}

.btn-primary:not(.header-cta)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-primary:not(.header-cta):hover::after {
  transform: translateX(120%);
}

.site-header .header-cta {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(242, 178, 13, 0.55);
  background: linear-gradient(
    180deg,
    rgba(255, 231, 176, 0.92),
    rgba(242, 178, 13, 0.92)
  );
  color: #1a1200;
  box-shadow:
    0 12px 26px rgba(21, 14, 4, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav .header-cta {
  background: linear-gradient(180deg, #ffd467, var(--brand)) !important;
  color: #1c1300 !important;
  border-color: rgba(242, 178, 13, 0.55) !important;
}

.site-header .header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 255, 255, 0.55) 45%,
    transparent 65%
  );
  transform: translateX(-110%);
  transition: transform 0.5s ease;
}

.site-header .header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 32px rgba(21, 14, 4, 0.35),
    0 0 0 1px rgba(242, 178, 13, 0.35);
}

.site-header .header-cta:hover::after {
  transform: translateX(110%);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--forest), var(--forest-strong));
  color: #fff;
}

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

.section-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero,
.page-banner {
  padding: 44px 0 28px;
}

.hero-grid,
.banner-grid,
.split-grid,
.contact-grid,
.partnership-grid,
.fellowship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.pricing-card,
.content-card,
.info-card,
.metric-card,
.contribution-card {
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(242, 178, 13, 0.14),
      transparent 40%
    ),
    linear-gradient(180deg, var(--deep-3) 0%, var(--deep-4) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow:
    0 12px 40px rgba(10, 6, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pricing-card p,
.content-card p,
.info-card p,
.metric-card p,
.contribution-card p,
.pricing-card .card-copy,
.content-card .card-copy,
.info-card .card-copy,
.metric-card .card-copy,
.contribution-card .card-copy,
.pricing-card li,
.content-card li,
.info-card li,
.metric-card li,
.contribution-card li {
  color: rgba(255, 255, 255, 0.62) !important;
}

.pricing-card h3,
.content-card h3,
.info-card h3,
.metric-card h3,
.contribution-card h3 {
  color: rgba(255, 255, 255, 0.95) !important;
}

.pricing-card:hover,
.content-card:hover,
.info-card:hover,
.metric-card:hover,
.contribution-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 64px rgba(10, 6, 24, 0.32),
    0 0 0 1px rgba(106, 75, 208, 0.35);
  border-color: rgba(106, 75, 208, 0.4);
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(242, 178, 13, 0.22),
      transparent 40%
    ),
    linear-gradient(180deg, var(--deep-2) 0%, var(--deep-3) 100%);
}

.page-membership .pricing-card:hover {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 30px 60px rgba(15, 42, 50, 0.12);
}

.pricing-card::after,
.content-card::after,
.info-card::after,
.metric-card::after,
.contribution-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: auto;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover::after,
.content-card:hover::after,
.info-card:hover::after,
.metric-card:hover::after,
.contribution-card:hover::after {
  opacity: 1;
  left: 100%;
}

.hero-card,
.banner-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(242, 178, 13, 0.26),
      transparent 24%
    ),
    linear-gradient(135deg, var(--deep-1) 0%, var(--deep-2) 100%);
}

.hero-card h1,
.banner-card h1,
.section-head h2,
.dark-quote p {
  font-family: "League Spartan", sans-serif;
}

.hero-card h1,
.banner-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-card p,
.banner-card p,
.section-copy,
.card-copy,
.footer-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-card p,
.banner-card p,
.hero-card .eyebrow,
.banner-card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.accent,
.text-highlight {
  color: var(--brand);
}

.banner-lead {
  margin: 8px 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.media,
.hero-visual,
.banner-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  background: linear-gradient(135deg, var(--deep-1) 0%, var(--deep-2) 100%);
  box-shadow: var(--shadow-lg);
}

.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--overlay-soft) 10%,
    var(--overlay-strong) 100%
  );
}

.media-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media::after {
  transition: opacity 0.4s ease;
}

.media:hover .media-photo {
  transform: scale(1.06);
}

.media:hover::after {
  opacity: 0.85;
}

.media-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.media-content h3 {
  margin: 0 0 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.media-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.stat-strip,
.card-grid,
.feature-grid,
.pricing-grid,
.program-list,
.metric-grid,
.number-row,
.process-row,
.highlight-stack,
.contact-stack {
  display: grid;
  gap: 22px;
}

.stat-strip {
  width: var(--container);
  margin: -60px auto 40px;
  position: relative;
  z-index: 10;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-pill {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 12px 32px rgba(44, 29, 77, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.stat-pill:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 48px rgba(44, 29, 77, 0.12);
}

.stat-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 800;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: 52px 0 82px;
}

.section-dark {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(242, 178, 13, 0.2), transparent 30%),
    linear-gradient(180deg, var(--deep-3) 0%, var(--deep-4) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--brand);
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .card-copy,
.section-dark .section-copy,
.section-dark .info-card p,
.section-dark .metric-card p,
.section-dark .pricing-list li,
.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.content-card h3,
.highlight-card h3,
.metric-card h3,
.pricing-card h3,
.program-item h3 {
  margin: 0 0 8px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.content-card .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-grid,
.number-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.icon-badge {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(
    135deg,
    var(--accent-soft),
    rgba(106, 75, 208, 0.2)
  );
  color: var(--accent);
  border: 1px solid var(--accent-line);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-card:hover .icon-badge,
.info-card:hover .icon-badge,
.metric-card:hover .icon-badge {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(106, 75, 208, 0.35);
}

.icon-badge--dark {
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand);
}

.info-card,
.metric-card {
  text-align: center;
}

.info-card-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  height: 120px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card-illustration img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(106, 75, 208, 0.15));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover .info-card-illustration img {
  transform: translateY(-8px) scale(1.1);
  filter: drop-shadow(0 16px 38px rgba(106, 75, 208, 0.3));
}

.section-dark .info-card:hover .info-card-illustration img {
  filter: drop-shadow(0 16px 38px rgba(217, 187, 93, 0.35));
}

/* Premium Section Dark Info Card Redesign - Full Cover Illustration */
.section-dark .info-card {
  position: relative;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(242, 178, 13, 0.18),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(25, 16, 60, 0.92) 0%,
      rgba(14, 9, 34, 0.92) 100%
    ) !important;
  /* deep brand color background */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 178, 13, 0.22) !important;
  border-radius: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* push text to bottom */
  align-items: center;
  padding: 40px 28px !important;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow:
    0 18px 44px rgba(6, 4, 16, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-dark .info-card .icon-badge--dark {
  background: rgba(242, 178, 13, 0.14);
  border-color: rgba(242, 178, 13, 0.35);
  color: var(--brand);
  box-shadow: 0 8px 22px rgba(242, 178, 13, 0.2);
}

.section-dark .info-card:hover {
  transform: translateY(-10px) !important;
  border-color: var(--brand) !important;
  /* glowing gold border on hover */
  box-shadow: 0 20px 45px rgba(217, 187, 93, 0.25) !important;
  /* gold shadow glow */
}

/* Make the illustration cover the whole card */
.section-dark .info-card-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: block;
}

.section-dark .info-card-illustration img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  opacity: 0.38 !important;
  /* high visual presence */
  filter: brightness(0.55) contrast(1.15) saturate(1.1) !important;
  /* dark and rich */
  transform: none !important;
  /* reset translation */
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Beautiful dark gradient overlay on the image to ensure ultimate readability */
.section-dark .info-card-illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 13, 45, 0.2) 0%,
    rgba(19, 13, 45, 0.88) 90%
  );
  z-index: 2;
  transition: opacity 0.5s ease;
}

.section-dark .info-card:hover .info-card-illustration img {
  transform: scale(1.12) !important;
  /* nice slow breathing zoom */
  opacity: 0.55 !important;
  /* brighter on hover */
  filter: brightness(0.65) contrast(1.25) saturate(1.25) !important;
}

/* Content sitting on top of the illustration */
.section-dark .info-card h3,
.section-dark .info-card p {
  position: relative;
  z-index: 3;
  /* sit on top of the absolute cover image and overlay */
}

.section-dark .info-card h3 {
  color: #ffffff !important;
  /* crisp white */
  font-weight: 700;
  font-size: 1.45rem !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.015em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 0 15px rgba(217, 187, 93, 0.35) !important;
  /* golden-rimmed text glow */
  transition: color 0.4s ease;
}

.section-dark .info-card:hover h3 {
  color: var(--brand) !important;
  /* turn text gold on hover */
}

.section-dark .info-card p {
  color: #f1f5f9 !important;
  /* high contrast slate/grayish-white */
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95) !important;
  /* deep shadow for extreme legibility */
}

.info-card-image {
  margin: -30px -30px 24px;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.info-card:hover .info-card-image img {
  transform: scale(1.08);
}

.info-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(15, 42, 50, 0.4) 100%
  );
}

.card-title,
.info-card h3,
.metric-card h3,
.program-item h3 {
  font-size: 1.06rem;
}

.card-copy,
.info-card p,
.metric-card p,
.program-item p,
.pricing-list li,
.check-list li,
.number-label {
  color: var(--muted);
  line-height: 1.65;
}

.quote-box {
  margin: 14px 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242, 178, 13, 0.28);
  border-left: 4px solid var(--brand);
  background: linear-gradient(
    135deg,
    rgba(242, 178, 13, 0.14),
    rgba(255, 248, 232, 0.7)
  );
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(8, 12, 20, 0.16);
}

/* Contribution Premium Section */
.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 42px;
}

.contribution-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.contribution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), transparent);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contribution-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(242, 178, 13, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contribution-card:hover::before {
  opacity: 1;
}

.contribution-card-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contribution-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 70%,
    rgba(15, 42, 50, 0.2) 100%
  );
  z-index: 1;
}

.contribution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contribution-card:hover .contribution-card-image img {
  transform: scale(1.1);
}

.contribution-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.contribution-card-content .icon-badge {
  margin-bottom: 16px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

/* Lucide Icon Styling */
[data-lucide] {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  vertical-align: middle;
}

.icon-badge [data-lucide],
.pill-item [data-lucide],
.gt-left [data-lucide] {
  width: 24px;
  height: 24px;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contribution-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #fff;
  font-family: "League Spartan", sans-serif;
  letter-spacing: -0.01em;
}

.contribution-card-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contribution-card {
    grid-template-columns: 160px 1fr;
  }

  .contribution-card-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .contribution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contribution-card {
    grid-template-columns: 1fr;
  }

  .contribution-card-image {
    height: 200px;
  }

  .contribution-card-image::after {
    background: linear-gradient(
      180deg,
      transparent 70%,
      rgba(15, 42, 50, 0.2) 100%
    );
  }
}

.muted-panel {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(242, 178, 13, 0.28);
  background: linear-gradient(
    135deg,
    rgba(242, 178, 13, 0.08),
    rgba(255, 255, 255, 0.06)
  );
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(8, 12, 20, 0.2);
}

.process-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  position: relative;
  text-align: center;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(242, 178, 13, 0.14),
      transparent 40%
    ),
    linear-gradient(180deg, var(--deep-3) 0%, var(--deep-4) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 6, 24, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(242, 178, 13, 0.22),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.process-step:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(242, 178, 13, 0.35);
  box-shadow: 0 18px 40px rgba(10, 6, 24, 0.32);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover .icon-badge {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 26px rgba(242, 178, 13, 0.35);
}

.process-step::after {
  content: "\2192";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-strong);
  font-size: 1.2rem;
}

.process-step:last-child::after {
  display: none;
}

.process-step p,
.process-step h3 {
  margin: 0;
}

.process-step h3 {
  margin-top: 10px;
}

.process-step p {
  margin-top: 8px;
  color: var(--muted);
}

.check-list,
.pricing-list,
.social-list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.pricing-list li,
.social-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}

.check-list li::before,
.pricing-list li::before,
.social-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand-strong);
  font-weight: 700;
}

.number-block {
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--deep-1) 0%, var(--deep-2) 100%);
}

.number-block strong {
  display: block;
  font-size: 1.8rem;
  color: var(--brand);
}

:root {
  --brand: #eab308;
  --brand-strong: #ca8a04;
  --ink: #0f2a32;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --line: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--surface-alt);
  background-image:
    radial-gradient(at 0% 0%, rgba(234, 179, 8, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(15, 42, 50, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}

.icon-badge {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.icon-badge--dark {
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand);
}

.pricing-value {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-value small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing-list {
  flex: 1;
}

.program-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.program-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.program-item:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 75, 208, 0.2);
  box-shadow: var(--shadow-md);
}

.program-item .program-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.6s ease;
}

.program-item:hover .program-image {
  transform: scale(1.04);
}

.program-item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.program-item-content .icon-badge {
  align-self: flex-start;
  margin-top: -46px;
  background: linear-gradient(
    135deg,
    var(--accent-soft),
    rgba(106, 75, 208, 0.2)
  );
  border: 1px solid var(--accent-line);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.program-item a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-strong);
  font-size: 1.9rem;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-line strong {
  display: block;
  margin-bottom: 3px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list li {
  margin-bottom: 0;
  padding-left: 0;
}

.social-list li::before {
  display: none;
}

.social-list a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--forest);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  box-shadow: var(--shadow-sm);
}

.form-card form,
.newsletter-form {
  display: grid;
  gap: 10px;
}

.form-card input,
.form-card textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 13px 15px;
}

.form-card input::placeholder,
.form-card textarea::placeholder,
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-card textarea {
  resize: vertical;
  min-height: 132px;
}

.form-card button:disabled,
.newsletter-form button:disabled {
  opacity: 0.72;
  cursor: default;
}

.dark-quote {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--deep-1) 0%, var(--deep-2) 100%);
}

.dark-quote p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.cta-strip p {
  margin: 0;
}

/* ─── NGO Empanelment Page ─────────────────────────── */
.empanelment-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.empanelment-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 24px;
}

.empanelment-why-card .icon-badge {
  margin-bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 26px;
}

.empanelment-why-card p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0;
  line-height: 1.5;
}

.home-intro {
  align-items: center;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mini-photo {
  margin-bottom: 14px;
}

.mini-photo__img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.site-footer {
  padding: 80px 0 40px;
  width: 100%;
  color: #fff;
  background:
    radial-gradient(
      circle at top right,
      rgba(106, 75, 208, 0.15),
      transparent 50%
    ),
    linear-gradient(180deg, var(--deep-1), var(--deep-4));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
}

.footer-grid > div {
  padding: 0;
  border: none;
  background: transparent;
}

.footer-tagline-highlight {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ffdf00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
  letter-spacing: 0.02em;
  position: relative;
}

.footer-tagline-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.brand-footer {
  margin-bottom: 24px;
}

.brand-footer .brand-logo {
  width: 58px;
  height: 58px;
}

.footer-grid h3 {
  margin: 0 0 24px;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.footer-list a:hover {
  color: #fff;
  transform: translateX(6px);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.footer-list li,
.footer-copy {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.site-footer .newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.site-footer .newsletter-form:focus-within {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  outline: none;
  font-size: 0.95rem;
}

.site-footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .newsletter-form .btn {
  border-radius: 999px;
  margin: 0;
  padding: 12px 24px;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.5);
  margin: 32px 0 0;
  font-size: 0.85rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 0 40px;
  }

  .site-footer .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .site-footer .newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .site-footer .newsletter-form .btn {
    border-radius: 12px;
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    padding: 0;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .hero-card,
  .banner-card {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .site-nav.is-open {
    width: 100%;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .btn {
    border-radius: 0;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(44, 29, 77, 0.12);
    width: 100%;
  }

  .site-nav .btn {
    justify-content: flex-start;
    margin-top: 2px;
  }

  .site-nav a:last-child,
  .site-nav .btn:last-child {
    border-bottom: 0;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .banner-grid,
  .split-grid,
  .contact-grid,
  .partnership-grid,
  .fellowship-grid,
  .card-grid,
  .feature-grid,
  .pricing-grid,
  .metric-grid,
  .process-row,
  .number-row,
  .stat-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-banner {
    padding-top: 20px;
  }

  .hero-card,
  .banner-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .program-item {
    /* flex direction column is fine on mobile */
  }

  .program-item a {
    /* a margin is fine */
  }

  .process-step::after {
    content: "\2193";
    left: 50%;
    right: auto;
    top: auto;
    bottom: -19px;
    transform: translateX(-50%);
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .site-header {
    padding-top: 8px;
  }

  .header-inner {
    padding: 14px 16px;
    border-radius: var(--radius-lg);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-footer .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .hero-card,
  .banner-card,
  .content-card,
  .contact-card,
  .highlight-card,
  .info-card,
  .metric-card,
  .pricing-card,
  .program-item,
  .dark-quote,
  .cta-strip,
  .footer-grid > div {
    border-radius: var(--radius-lg);
  }

  .hero-card,
  .banner-card {
    padding: 26px 22px;
  }

  .hero-card h1,
  .banner-card h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }

  .banner-lead {
    font-size: 1.08rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .media,
  .hero-visual,
  .banner-visual {
    min-height: 260px;
  }

  .play-badge {
    width: 62px;
    height: 62px;
    font-size: 1.2rem;
  }

  .media-content h3 {
    font-size: 1.2rem;
  }

  .stat-pill strong,
  .metric-card strong,
  .number-block strong {
    font-size: 1.5rem;
  }

  .content-card,
  .contact-card,
  .highlight-card,
  .info-card,
  .metric-card,
  .pricing-card {
    padding: 22px;
  }

  .section {
    padding: 34px 0 54px;
  }

  .section-dark {
    padding: 52px 0;
  }
}

/* ==========================================================================
   Pricing & Membership Premium System
   ========================================================================== */

.pricing-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}

/* Category Tabs */
.tabs.category-tabs {
  display: flex;
  background: rgba(44, 29, 77, 0.05);
  padding: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn {
  padding: 12px 32px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  font-weight: 700;
  font-family: "League Spartan", sans-serif;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.tab-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Frequency Segment Selector */
.frequency-segment-wrapper {
  display: flex;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-md);
  gap: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.segment-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.segment-btn:hover {
  color: var(--brand-strong);
  background: var(--surface-alt);
}

.segment-btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

@media (max-width: 600px) {
  .frequency-segment-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px;
  }

  .segment-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Pricing Grid & Views */
.pricing-view,
.frequency-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.pricing-view.is-active,
.frequency-view.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-membership .pricing-card,
.page-membership .pricing-card h3 {
  color: var(--ink) !important;
}

.page-membership .pricing-card p,
.page-membership .pricing-card .card-copy,
.page-membership .pricing-list li {
  color: var(--muted) !important;
}

.page-membership .pricing-card,
.page-membership .pricing-card h3,
.page-membership .pricing-card p,
.page-membership .pricing-value span,
.page-membership .pricing-value small,
.page-membership .pricing-list li {
  color: var(--ink);
}

.page-membership .pricing-value small,
.page-membership .pricing-list li {
  color: var(--muted);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(15, 42, 50, 0.12);
  border-color: var(--brand);
}

.plan-impact {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--accent-soft);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-family: "League Spartan", sans-serif;
}

.pricing-value {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-value span {
  font-size: 3rem;
  font-weight: 800;
  font-family: "League Spartan", sans-serif;
  line-height: 1;
  color: var(--ink);
}

.pricing-value small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.pricing-list {
  margin: 0 0 32px;
  flex-grow: 1;
}

.pricing-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
}

.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: bold;
}

.pricing-card--institutional {
  background: linear-gradient(180deg, #fff 0%, #f0f4f5 100%);
  border-top: 6px solid var(--forest);
}

/* Checkout Modal */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 50, 0.6);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 24px;
}

.checkout-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-overlay.is-visible .checkout-modal {
  transform: scale(1) translateY(0);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #f8f9fa;
  font-size: 24px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(90deg);
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-header h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-family: "League Spartan", sans-serif;
}

.checkout-header p {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--accent-soft);
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid #e2e8f0;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 178, 13, 0.1);
}

.checkout-footer {
  margin-top: 40px;
}

.btn-block {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  border-radius: 18px;
}

.secure-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
}

/* Promoter / Institutional Styles */
.promoter-container {
  padding: 20px 0 0;
}

/* Hero Banner */
.promoter-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.promoter-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(242, 178, 13, 0.08);
  pointer-events: none;
}

.promoter-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(242, 178, 13, 0.05);
  pointer-events: none;
}

.promoter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 178, 13, 0.15);
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.promoter-hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.promoter-hero-content h3 {
  color: #fff;
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.promoter-hero-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

.promoter-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  position: relative;
  z-index: 1;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 2.4rem;
  color: var(--brand);
  font-family: "League Spartan", sans-serif;
  line-height: 1;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* Step Sections */
.promoter-step {
  margin-bottom: 40px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.step-indicator h4 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
}

.step-indicator p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Calculator Cards */
.calc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.calc-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.calc-card:hover {
  border-color: rgba(242, 178, 13, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.calc-card.has-value {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(242, 178, 13, 0.12);
}

.calc-card-header {
  padding: 24px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-tier {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.calc-price {
  font-size: 1.5rem;
  font-family: "League Spartan", sans-serif;
}

.calc-price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.calc-card-body {
  padding: 0 24px 24px;
}

.calc-card-body label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.stepper:focus-within {
  border-color: var(--brand);
}

.stepper-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: #e2e8f0;
}

.stepper-btn:active {
  background: var(--brand);
  color: #fff;
}

.stepper .calc-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  -moz-appearance: textfield;
  border-radius: 0;
}

.stepper .calc-input::-webkit-inner-spin-button,
.stepper .calc-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper .calc-input:focus {
  outline: none;
}

.calc-card-foot {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
  border-top: 1px solid var(--line);
}

.calc-card-foot span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.calc-card-foot .row-total {
  font-size: 1.2rem;
  font-family: "League Spartan", sans-serif;
  color: var(--ink);
  text-align: right;
}

.calc-card.has-value .calc-card-foot .row-total {
  color: var(--forest);
}

/* Grand Total Bar */
.grand-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  margin-top: 28px;
  transition: all 0.4s ease;
}

.grand-total-bar.has-total {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  box-shadow: 0 12px 32px rgba(15, 52, 96, 0.3);
}

.gt-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gt-left i {
  font-size: 1.8rem;
  color: var(--brand);
  font-weight: normal !important;
}

.gt-left span {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}

.gt-left small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.grand-total-bar > strong {
  font-size: 2rem;
  color: var(--brand);
  font-family: "League Spartan", sans-serif;
}

/* Pill Selectors */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pill-grid.modes {
  grid-template-columns: repeat(4, 1fr);
}

.pill-item {
  position: relative;
  cursor: pointer;
}

.pill-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-align: center;
}

.pill-item span i {
  font-size: 1.2rem;
  font-weight: normal !important;
}

.pill-item:hover span {
  border-color: rgba(242, 178, 13, 0.4);
  background: #fffdf5;
}

.pill-item input:checked + span {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(242, 178, 13, 0.25);
}

.pill-item input:checked + span i {
  color: #fff;
}

/* Footer CTA */
.promoter-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.btn-large {
  padding: 20px 36px;
  font-size: 1.05rem;
  border-radius: 16px;
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-large i {
  font-weight: normal !important;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-modal {
    padding: 40px 24px;
  }

  .promoter-hero {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .promoter-hero-content p {
    max-width: 100%;
  }

  .promoter-hero-stats {
    width: 100%;
    justify-content: center;
  }

  .calc-cards {
    grid-template-columns: 1fr;
  }

  .pill-grid,
  .pill-grid.modes {
    grid-template-columns: 1fr 1fr;
  }

  .promoter-cta {
    flex-direction: column;
  }

  .grand-total-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .gt-left {
    justify-content: center;
  }
}

/* Success Modal & Receipt */
.success-modal-content {
  max-width: 640px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.success-header h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.success-header p {
  color: var(--muted);
  margin-bottom: 32px;
}

/* Receipt Card */
.receipt-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.receipt-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(44, 29, 77, 0.03);
  pointer-events: none;
  z-index: 0;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.receipt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.receipt-brand img {
  width: 50px;
  height: 50px;
}

.receipt-brand strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
}

.receipt-brand small {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.receipt-badge {
  background: var(--forest);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.receipt-body {
  position: relative;
  z-index: 1;
}

.receipt-intro {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.receipt-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.detail-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.detail-item strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.rec-amount {
  color: var(--forest) !important;
  font-size: 1.5rem !important;
}

.receipt-meta {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.receipt-meta p {
  margin: 4px 0;
}

.receipt-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.sig-line {
  width: 160px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 8px;
}

.signature p {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.signature small {
  color: var(--muted);
}

.receipt-stamp {
  border: 3px double var(--brand);
  padding: 8px 16px;
  border-radius: 8px;
  transform: rotate(-10deg);
  text-align: center;
  color: var(--brand-strong);
}

.receipt-stamp p {
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
}

.receipt-stamp small {
  font-size: 0.6rem;
  font-weight: 700;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Print Styles */
@media print {
  body * {
    visibility: hidden;
  }

  #printable-receipt,
  #printable-receipt * {
    visibility: visible;
  }

  #printable-receipt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .success-actions,
  .close-modal {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.receipt-badge {
  background: var(--forest);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.receipt-body {
  position: relative;
  z-index: 1;
}

.receipt-intro {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.receipt-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.detail-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.detail-item strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.rec-amount {
  color: var(--forest) !important;
  font-size: 1.5rem !important;
}

.receipt-meta {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.receipt-meta p {
  margin: 4px 0;
}

.receipt-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.sig-line {
  width: 160px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 8px;
}

.signature p {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.signature small {
  color: var(--muted);
}

.receipt-stamp {
  border: 3px double var(--brand);
  padding: 8px 16px;
  border-radius: 8px;
  transform: rotate(-10deg);
  text-align: center;
  color: var(--brand-strong);
}

.receipt-stamp p {
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
}

.receipt-stamp small {
  font-size: 0.6rem;
  font-weight: 700;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Print Styles */
@media print {
  body * {
    visibility: hidden;
  }

  #printable-receipt,
  #printable-receipt * {
    visibility: visible;
  }

  #printable-receipt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .success-actions,
  .close-modal {
    display: none !important;
  }
}

/* Premium Scroll Reveal Animation System */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium Unified Full-Bleed Background Hero Card System */
.unified-hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--deep-3) 0%, var(--deep-4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.unified-hero-card .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
}

.page-home .unified-hero-card .hero-bg-photo {
  transform: translateX(20%) translateY(-6%) scale(1.4);
  transform-origin: center;
}

.unified-hero-card .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 10, 43, 0.98) 0%,
    rgba(15, 10, 43, 0.85) 30%,
    rgba(15, 10, 43, 0.6) 55%,
    rgba(15, 10, 43, 0.15) 70%,
    rgba(15, 10, 43, 0) 85%
  );
  z-index: 2;
}

.unified-hero-card .hero-text-content {
  position: relative;
  z-index: 3;
  max-width: 55%;
  padding: 64px 0 64px 64px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-hero-card .hero-text-content .eyebrow {
  align-self: flex-start;
  background: rgba(217, 187, 93, 0.12);
  border: 1px solid rgba(217, 187, 93, 0.22);
  color: var(--brand);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 700;
}

.unified-hero-card .hero-text-content h1 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #fff;
}

.unified-hero-card .hero-text-content .banner-lead {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 12px;
  line-height: 1.4;
}

.unified-hero-card .hero-text-content .banner-body {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.unified-hero-card .hero-text-content .banner-body:last-child {
  margin-bottom: 0;
}

.unified-hero-card .hero-caption-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  max-width: 320px;
  background: rgba(15, 10, 43, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.unified-hero-card .hero-caption-badge:hover {
  transform: translateY(-4px);
  background: rgba(15, 10, 43, 0.6);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

.unified-hero-card .hero-caption-badge h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.unified-hero-card .hero-caption-badge p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .unified-hero-card {
    min-height: 400px;
    flex-direction: column;
    align-items: stretch;
  }

  .unified-hero-card .hero-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 10, 43, 0.9) 0%,
      rgba(15, 10, 43, 0.75) 60%,
      rgba(15, 10, 43, 0.92) 100%
    );
  }

  .unified-hero-card .hero-text-content {
    max-width: 100%;
    padding: 48px 48px 24px;
  }

  .unified-hero-card .hero-caption-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 0 48px 48px;
    max-width: calc(100% - 96px);
  }
}

@media (max-width: 640px) {
  .unified-hero-card {
    border-radius: var(--radius-lg);
  }

  .unified-hero-card .hero-gradient-overlay {
    background: rgba(15, 10, 43, 0.85);
  }

  .unified-hero-card .hero-text-content {
    padding: 36px 24px 16px;
  }

  .unified-hero-card .hero-caption-badge {
    margin: 0 24px 36px;
    max-width: calc(100% - 48px);
    padding: 14px 16px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   Premium Unified Contact Page Revamp Styles
   ========================================================================== */

.contact-section-container {
  position: relative;
  overflow: hidden;
  padding: 52px 0 82px;
}

.contact-section-container .glow-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(140px);
  z-index: 1;
}

.contact-section-container .glow-blob.gold {
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -50px;
  right: -100px;
}

.contact-section-container .glow-blob.purple {
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -100px;
  left: -150px;
}

.contact-grid .contact-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(106, 75, 208, 0.08);
  backdrop-filter: blur(24px);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 40px rgba(106, 75, 208, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .contact-grid .contact-card {
    padding: 22px;
  }
}

.contact-grid .contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(106, 75, 208, 0.25);
  box-shadow:
    0 30px 60px rgba(106, 75, 208, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-stack .contact-line {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 42, 50, 0.04);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-stack .contact-line:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(106, 75, 208, 0.15);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(106, 75, 208, 0.04);
}

.contact-stack .contact-line .icon-badge {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--forest) 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(106, 75, 208, 0.15);
}

.contact-stack .contact-line:hover .icon-badge {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 20px rgba(106, 75, 208, 0.3);
}

.contact-stack .contact-line div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.contact-stack .contact-line div strong {
  font-size: 0.88rem;
  color: var(--forest);
  margin-bottom: 2px;
}

.contact-stack .contact-line div span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.form-card form {
  gap: 16px;
}

.form-card .form-group {
  position: relative;
  width: 100%;
}

.form-card .form-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(44, 29, 77, 0.6);
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card .form-group .input-icon svg,
.form-card .form-group .input-icon i {
  width: 18px;
  height: 18px;
}

.form-card .form-group.textarea-group .input-icon {
  top: 24px;
  transform: none;
}

.form-card .form-group input,
.form-card .form-group textarea {
  width: 100%;
  border: 1px solid rgba(44, 29, 77, 0.14);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--ink);
  padding: 14px 16px 14px 48px;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 6px rgba(44, 29, 77, 0.06);
}

.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
  color: rgba(44, 29, 77, 0.45);
}

.form-card .form-group input:focus,
.form-card .form-group textarea:focus {
  background: #fffdf6;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(242, 178, 13, 0.2);
  outline: none;
  color: var(--ink);
}

.form-card .form-group input:focus ~ .input-icon,
.form-card .form-group textarea:focus ~ .input-icon {
  color: var(--brand);
  transform: translateY(-50%) scale(1.05);
}

.form-card .form-group.textarea-group textarea:focus ~ .input-icon {
  transform: scale(1.05);
}

.contact-card .social-list {
  margin-top: 10px;
  gap: 12px;
}

.contact-card .social-list li {
  padding-left: 0;
  margin-bottom: 0;
}

.contact-card .social-list li::before {
  content: none;
}

.contact-card .social-list a {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid rgba(44, 29, 77, 0.12);
  color: var(--ink);
  font-size: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 14px rgba(44, 29, 77, 0.08);
}

.contact-card .social-list a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.contact-card .social-list a:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--forest) 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(106, 75, 208, 0.25);
  border-color: transparent;
}
