/* ==========================================================================
   Freebies Community — Design System & Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* ---- Colors ---- */
  --near-black:   #070A13;
  --deep-navy:    #0B1020;
  --brand-navy:   #151B45;
  --gold:         #F4BF4E;
  --light-gold:   #FFD876;
  --cream:        #FFF9ED;
  --muted:        #AEB4C9;

  /* ---- Typography ---- */
  --font-heading: Georgia, "Times New Roman", Times, serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
                  Arial, sans-serif;

  /* ---- Spacing ---- */
  --section-gap:       5rem;   /* 80px */
  --section-gap-sm:    2.5rem; /* 40px */
  --container-max:     1200px;
  --container-padding: 1.5rem;

  /* ---- Radii ---- */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* ---- Shadows ---- */
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-button: 0 2px 12px rgba(244, 191, 78, 0.3);

  /* ---- Transitions ---- */
  --ease-default: 0.25s ease;
  --ease-smooth:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--near-black);
  color: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--ease-default);
}

a:hover,
a:focus-visible {
  color: var(--light-gold);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p + p { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   3. ACCESSIBILITY
   -------------------------------------------------------------------------- */

/* Skip-to-content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--near-black);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  font-size: 0.95rem;
  transition: top 0.15s ease;
}

.skip-to-content:focus {
  top: 0.75rem;
  outline: 3px solid var(--light-gold);
  outline-offset: 2px;
}

/* Focus-visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   4. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-gap);
}

.section--sm {
  padding-block: var(--section-gap-sm);
}

.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }

.bg-near-black { background-color: var(--near-black); }
.bg-deep-navy  { background-color: var(--deep-navy); }
.bg-brand-navy { background-color: var(--brand-navy); }

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--ease-default);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}

.site-logo:hover,
.site-logo:focus-visible {
  text-decoration: none;
  color: var(--light-gold);
}

.site-logo .logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ---- Desktop nav ---- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--ease-default);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--cream);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* ---- Hamburger button ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--ease-smooth), opacity var(--ease-smooth);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile nav panel ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(7, 10, 19, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-smooth);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--ease-default);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--gold);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease-default), transform var(--ease-default),
              box-shadow var(--ease-default), color var(--ease-default);
  line-height: 1.3;
}

.btn--gold {
  background: var(--gold);
  color: var(--near-black);
  box-shadow: var(--shadow-button);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--light-gold);
  color: var(--near-black);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(244, 191, 78, 0.45);
  text-decoration: none;
}

.btn--gold:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--gold);
  color: var(--near-black);
  text-decoration: none;
}

.btn--lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

/* --------------------------------------------------------------------------
   7. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth),
              border-color var(--ease-smooth);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(244, 191, 78, 0.15);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.card__body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card--gold-accent {
  border-top: 3px solid var(--gold);
}

/* --------------------------------------------------------------------------
   8. FAQ (Details/Summary)
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: var(--deep-navy);
  overflow: hidden;
  transition: border-color var(--ease-default);
}

.faq-item:hover {
  border-color: rgba(244, 191, 78, 0.2);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--ease-smooth);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 3rem 2rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .site-logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--ease-default);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  text-decoration: none;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   10. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}

.js .animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   11. LEGAL PAGES (Privacy, Terms, Platform)
   -------------------------------------------------------------------------- */
.legal-page {
  padding-top: 100px; /* offset fixed header */
  padding-bottom: var(--section-gap);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 1rem;
  color: var(--cream);
}

.legal-page .last-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.legal-page li + li {
  margin-top: 0.5rem;
}

.legal-page a {
  text-decoration: underline;
}

.legal-page strong {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   12. PAGE HERO (for sub-pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--near-black) 100%);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   13. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 100px;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--deep-navy) 50%, var(--near-black) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 540px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero__location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(244, 191, 78, 0.12);
  border: 1px solid rgba(244, 191, 78, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__location-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero__heading .text-gold {
  color: var(--gold);
}

.hero__body {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.45;
}

.hero__benefits li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  mask-size: 14px;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background: var(--gold);
}

.hero__artwork {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__artwork img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(244, 191, 78, 0.12));
}

/* --------------------------------------------------------------------------
   14. PREMIUM SECTION (Product Feedback)
   -------------------------------------------------------------------------- */
.premium-section {
  padding-block: var(--section-gap);
}

.premium-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--deep-navy) 60%, var(--near-black) 100%);
  border: 1px solid rgba(244, 191, 78, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
}

.premium-card__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-card__visual img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.premium-card__content {
  max-width: 500px;
}

.premium-card__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.premium-card__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.premium-card__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.premium-card__trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.premium-card__trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--cream);
}

.premium-card__trust-strip .trust-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. HOW IT WORKS — Process Cards Grid
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-card {
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--ease-smooth), border-color var(--ease-smooth),
              box-shadow var(--ease-smooth);
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 191, 78, 0.2);
  box-shadow: var(--shadow-card);
}

.process-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.process-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-card__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   16. OPPORTUNITIES — Three Cards
   -------------------------------------------------------------------------- */
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.opportunity-card {
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--ease-smooth), border-color var(--ease-smooth),
              box-shadow var(--ease-smooth);
}

.opportunity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 191, 78, 0.2);
  box-shadow: var(--shadow-card);
}

.opportunity-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.opportunity-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.opportunity-card__body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   17. PLATFORM PROGRAMS
   -------------------------------------------------------------------------- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.platform-card {
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--ease-smooth), border-color var(--ease-smooth),
              box-shadow var(--ease-smooth);
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 191, 78, 0.2);
  box-shadow: var(--shadow-card);
}

.platform-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.platform-card__desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   18. TRUST SECTION
   -------------------------------------------------------------------------- */
.trust-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-section__content {
  max-width: 520px;
}

.trust-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.trust-section__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trust-section__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-section__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.trust-point__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}

.trust-point__text strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trust-point__text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-section__graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-graphic {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--brand-navy) 0%, var(--deep-navy) 60%, var(--near-black) 100%);
  border: 2px solid rgba(244, 191, 78, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.trust-graphic__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.trust-graphic__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.trust-graphic__labels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-graphic__label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  padding: 0.4rem 1rem;
  background: rgba(244, 191, 78, 0.08);
  border: 1px solid rgba(244, 191, 78, 0.15);
  border-radius: 999px;
  white-space: nowrap;
}

.trust-graphic__caption {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   19. SUCCESS STORIES / PROOF
   -------------------------------------------------------------------------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.proof-card {
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--ease-smooth);
}

.proof-card:hover {
  border-color: rgba(244, 191, 78, 0.15);
}

.proof-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.proof-card__label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.proof-card__sub {
  color: var(--muted);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   20. FINAL CTA
   -------------------------------------------------------------------------- */
.cta-section {
  padding-block: var(--section-gap);
}

.cta-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2355 50%, var(--deep-navy) 100%);
  border: 1px solid rgba(244, 191, 78, 0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 850px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(244, 191, 78, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-card__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-card__body {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   21. HEADER — Apply Button
   -------------------------------------------------------------------------- */
.header-cta {
  margin-left: 1.5rem;
}

.site-logo img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   22. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section__subheading {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* 1440+ — large desktop */
@media (min-width: 1440px) {
  :root {
    --container-max: 1300px;
  }
}

/* 1024-1439 — tablet / small desktop */
@media (max-width: 1023px) {
  :root {
    --section-gap: 4rem;
  }


  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__body {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__benefits {
    align-items: center;
  }

  .hero__benefits li {
    justify-content: center;
  }

  .hero__artwork {
    order: -1;
  }

  .hero__artwork img {
    max-height: 450px;
  }

  .premium-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .premium-card__content {
    max-width: 100%;
  }

  .premium-card__trust-strip .trust-item {
    justify-content: center;
  }

  .trust-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .trust-section__content {
    max-width: 100%;
  }

  .trust-section__points li {
    justify-content: center;
  }

  .trust-graphic {
    max-width: 320px;
  }

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

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

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

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

/* 768-1023 — tablet landscape */
@media (max-width: 768px) {
  :root {
    --section-gap: 3rem;
    --container-padding: 1.25rem;
  }

  .card {
    padding: 1.5rem;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero {
    padding-top: 85px;
    padding-bottom: 2.5rem;
  }

  .hero__heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero__body {
    font-size: 1rem;
  }

  .hero__benefits li {
    font-size: 0.95rem;
  }

  .hero__artwork img {
    max-height: 360px;
  }

  .premium-card__heading {
    font-size: 1.4rem;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .process-card {
    padding: 1.5rem;
  }

  .process-card__number {
    font-size: 2rem;
  }

  .opportunities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-card__heading {
    font-size: 1.4rem;
  }

  .header-cta {
    margin-left: 0;
  }

  .trust-graphic {
    max-width: 280px;
  }

  .trust-graphic__logo {
    width: 48px;
    height: 48px;
  }

  .trust-graphic__label {
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
  }
}

/* 375-767 — phone */
@media (max-width: 600px) {
  :root {
    --section-gap: 2.5rem;
    --container-padding: 1rem;
  }


  .hero {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .hero__artwork img {
    max-height: 320px;
  }

  .hero__heading {
    font-size: 1.7rem;
  }

  .hero__benefits li {
    justify-content: flex-start;
    font-size: 0.9rem;
  }

  .premium-card {
    padding: 1.5rem;
  }

  .premium-card__heading {
    font-size: 1.3rem;
  }

  .premium-card__visual img {
    max-height: 250px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .trust-graphic {
    max-width: 260px;
  }

  .cta-card {
    padding: 2rem 1.25rem;
  }
}

/* 375 and below — small phone */
@media (max-width: 375px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero__artwork img {
    max-height: 280px;
  }

  .trust-graphic {
    max-width: 240px;
  }

  .trust-graphic__label {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }

  .site-logo span {
    font-size: 0.9rem;
  }
}

/* 320 — smallest */
@media (max-width: 320px) {
  .site-header .container {
    height: 56px;
  }

  .site-logo {
    font-size: 1.1rem;
  }

  .hero__heading {
    font-size: 1.5rem;
  }

  .trust-graphic {
    max-width: 220px;
  }
}

/* Critical production fixes */
.site-logo .logo-icon,.site-logo img.logo-icon{width:40px;height:40px;flex:0 0 40px;border-radius:10px;object-fit:cover}
.hero__artwork,.premium-card__visual{min-width:0}
.hero__artwork img{width:100%;max-width:590px;max-height:none;aspect-ratio:565/480;object-fit:contain;object-position:center;border-radius:var(--radius-lg)}
.premium-card__visual img{width:100%;max-width:500px;max-height:none;aspect-ratio:465/335;object-fit:contain;object-position:center;border-radius:var(--radius-md)}
.platform-independence,.policy-notice{margin-top:1.5rem;padding:1rem 1.15rem;border:1px solid rgba(244,191,78,.22);border-radius:var(--radius-md);background:rgba(244,191,78,.06);color:var(--muted);font-size:.92rem;line-height:1.65}.policy-notice{margin-top:0;margin-bottom:2rem}.policy-notice strong{display:block;color:var(--cream);margin-bottom:.35rem}.platform-policy-section .card{margin-bottom:1.5rem}.policy-links{display:flex;flex-wrap:wrap;gap:.75rem 1rem;margin-top:1rem}.policy-links a{font-weight:700;text-decoration:underline;text-underline-offset:3px}.mobile-nav{visibility:hidden}.mobile-nav.open{visibility:visible}.trust-graphic__logo{width:72px;height:72px;border-radius:16px;object-fit:cover}.site-header.is-scrolled{background:rgba(7,10,19,.95);box-shadow:0 1px 20px rgba(0,0,0,.5)}
@media(max-width:1100px){.main-nav,.header-cta{display:none}.hamburger{display:flex}.mobile-nav{display:flex}}
@media(max-width:600px){.hero__content>.btn,.cta-card .btn,.mobile-nav .btn{width:100%;text-align:center}.site-header .container{gap:.75rem}.hero__artwork img,.premium-card__visual img{max-height:none}}

@media (max-width: 1100px) and (max-height: 500px) {
  .mobile-nav {
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: 100dvh;
    padding-top: calc(72px + env(safe-area-inset-top));
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }
}


/* --------------------------------------------------------------------------
   REAL CAMPAIGN PROOF — V2.3
   This block affects only #success-stories.
   -------------------------------------------------------------------------- */
#success-stories .section__subheading {
  max-width: 790px;
}

.real-proof-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.real-proof-case,
.real-proof-payment {
  overflow: hidden;
  border: 1px solid rgba(244, 191, 78, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 191, 78, 0.06), transparent 28%),
    var(--deep-navy);
}

.real-proof-case {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.real-proof-case--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.real-proof-case--reverse .real-proof-case__gallery {
  order: 2;
}

.real-proof-case--reverse .real-proof-case__content {
  order: 1;
}

.real-proof-case__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.06);
}

.real-proof-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  background: #090d1c;
}

.real-proof-photo a {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0.75rem;
}

.real-proof-photo img {
  width: 100%;
  height: 100%;
  max-height: 465px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #090d1c;
}

.real-proof-photo figcaption {
  padding: 0.8rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.real-proof-case__content,
.real-proof-payment__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.real-proof-case__content h3,
.real-proof-payment__content h3 {
  margin: 0.75rem 0 0.5rem;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.real-proof-case__content > p:not(.real-proof-category):not(.real-proof-note),
.real-proof-payment__content > p:not(.real-proof-note) {
  color: var(--muted);
  line-height: 1.7;
}

.real-proof-badge {
  align-self: flex-start;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(244, 191, 78, 0.3);
  border-radius: 999px;
  background: rgba(244, 191, 78, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-proof-category {
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.real-proof-points {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.real-proof-points li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 249, 237, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.real-proof-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.real-proof-quote {
  margin: 1.2rem 0 1rem;
  padding: 1.2rem 1.25rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 249, 237, 0.9);
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.75;
}

.real-proof-note {
  margin-top: 1rem;
  color: rgba(174, 180, 201, 0.74);
  font-size: 0.76rem;
  line-height: 1.55;
}

.real-proof-payment {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: stretch;
}

.real-proof-payment__visual {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 1rem;
  background: #f5f5f3;
}

.real-proof-payment__visual a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.real-proof-payment__visual img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}

.real-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.real-proof-metrics div {
  padding: 0.9rem 0.7rem;
  border: 1px solid rgba(244, 191, 78, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(244, 191, 78, 0.055);
  text-align: center;
}

.real-proof-metrics strong,
.real-proof-metrics span {
  display: block;
}

.real-proof-metrics strong {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.real-proof-metrics span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 980px) {
  .real-proof-case,
  .real-proof-case--reverse,
  .real-proof-payment {
    grid-template-columns: 1fr;
  }

  .real-proof-case--reverse .real-proof-case__gallery,
  .real-proof-case--reverse .real-proof-case__content {
    order: initial;
  }

  .real-proof-case__gallery {
    min-height: 460px;
  }

  .real-proof-payment__visual {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .real-proof-case__gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .real-proof-photo img {
    height: auto;
    max-height: 520px;
  }

  .real-proof-payment__visual {
    min-height: 0;
    padding: 0.6rem;
  }

  .real-proof-metrics {
    grid-template-columns: 1fr;
  }

  .real-proof-case__content,
  .real-proof-payment__content {
    padding: 1.35rem;
  }
}
