/* ==========================================================================
   Skyrocket Credit Solutions — Shared Styles
   Black / Gold space theme
   ========================================================================== */

:root {
  --bg: #05060d;
  --bg-alt: #0b0e1c;
  --bg-card: #10142766;
  --gold: #d4af37;
  --gold-bright: #f7dd8a;
  --gold-deep: #9c7a24;
  --text: #f3f1ea;
  --text-muted: #b7bccc;
  --border: #d4af3733;
  --glow: rgba(212, 175, 55, 0.35);
  --radius: 16px;
  --max-width: 1180px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Orbitron', 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Starfield background ---------- */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 700px at 15% 8%, rgba(80,110,200,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 85% 15%, rgba(212,175,55,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 900px 800px at 75% 70%, rgba(120,70,180,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 700px 700px at 10% 80%, rgba(40,90,190,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 30%, #10132a 0%, var(--bg) 60%),
    var(--bg);
  overflow: hidden;
}
.starfield::before,
.starfield::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.6px 1.6px at 20px 30px, #fff, transparent),
    radial-gradient(1.2px 1.2px at 90px 120px, #fff, transparent),
    radial-gradient(1.8px 1.8px at 160px 60px, #fff, transparent),
    radial-gradient(1.2px 1.2px at 220px 200px, #fff, transparent),
    radial-gradient(1.8px 1.8px at 300px 40px, #f7dd8a, transparent),
    radial-gradient(1.2px 1.2px at 340px 150px, #fff, transparent),
    radial-gradient(1.8px 1.8px at 400px 260px, #fff, transparent),
    radial-gradient(1.2px 1.2px at 60px 220px, #fff, transparent),
    radial-gradient(2px 2px at 250px 290px, #f7dd8a, transparent),
    radial-gradient(1.4px 1.4px at 380px 90px, #fff, transparent);
  background-repeat: repeat;
  background-size: 420px 320px;
  opacity: 0.65;
  animation: twinkle 6s ease-in-out infinite;
}
.starfield::after {
  background-size: 560px 480px;
  opacity: 0.4;
  transform: translateY(40px);
  animation: twinkle 8s ease-in-out infinite reverse;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

/* Bigger sparkle stars, echoing the logo's star marks */
.sparkle-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.sparkle-stars span {
  position: absolute;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #f7dd8a, #d4af37);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
}
.sparkle-stars span:nth-child(1) { top: 8%; left: 12%; width: 16px; height: 16px; animation-delay: 0s; }
.sparkle-stars span:nth-child(2) { top: 14%; left: 78%; width: 12px; height: 12px; animation-delay: 1s; background: linear-gradient(135deg, #fff, #f7dd8a); }
.sparkle-stars span:nth-child(3) { top: 32%; left: 92%; width: 10px; height: 10px; animation-delay: 2s; }
.sparkle-stars span:nth-child(4) { top: 6%; left: 45%; width: 8px; height: 8px; animation-delay: 1.5s; }
.sparkle-stars span:nth-child(5) { top: 46%; left: 6%; width: 10px; height: 10px; animation-delay: 2.5s; }
.sparkle-stars span:nth-child(6) { top: 60%; left: 88%; width: 14px; height: 14px; animation-delay: 0.6s; background: linear-gradient(135deg, #fff, #f7dd8a); }
@media (max-width: 760px) {
  .sparkle-stars span:nth-child(3),
  .sparkle-stars span:nth-child(6) { display: none; }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.gradient-text {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 620px;
}
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-heading p { color: var(--text-muted); }

section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, #0a0d1a80, transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright));
  color: #17130a;
  box-shadow: 0 8px 24px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--glow); }
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 13, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}
.brand .rocket-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.brand .rocket-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.footer-logo-full {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  border-radius: 8px;
}
.brand span.tag { color: var(--gold-bright); }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
nav.main-nav a:hover { color: var(--gold-bright); }

.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-bright);
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .header-phone span.phone-text { display: none; }
  .nav-toggle { display: block; }

  nav.main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 6, 13, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 100px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-logo {
  width: 168px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 0 1px var(--border), 0 20px 60px var(--glow);
}
@media (max-width: 600px) {
  .hero-logo { width: 130px; }
}
.hero p.lead { margin: 0 auto 34px; text-align: center; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: 0.82rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---------- Process / steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: linear-gradient(180deg, #12162b99, #0b0e1c99);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: #17130a;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.disclosure {
  font-size: 0.76rem;
  color: #8f96ab;
  font-style: italic;
  line-height: 1.5;
  margin-top: 14px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.step-card .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.service-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1f38, #0e1122);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon-wrap svg { width: 24px; height: 24px; color: var(--gold-bright); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  position: relative;
}
.price-featured {
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px var(--glow);
  transform: scale(1.03);
}
@media (max-width: 900px) { .price-featured { transform: none; } }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #05060d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-plan {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.price-amount span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #1a1f38, #0e1122);
}
.price-features li::after {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Franchise ---------- */
.franchise-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.franchise-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1f38, #0e1122);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #d4af370f;
}
.franchise-icon svg { width: 30px; height: 30px; color: var(--gold-bright); }
.franchise-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- CEO section ---------- */
.ceo-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) { .ceo-wrap { grid-template-columns: 1fr; text-align: center; } }

.ceo-photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(135deg, #171b30, #0c0f1e);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px #d4af370f, 0 20px 50px var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ceo-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ceo-photo .placeholder-initials {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-bright);
  opacity: 0.85;
}
.ceo-photo .placeholder-note {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: #7d8299;
  white-space: nowrap;
}
.ceo-name { font-size: 1.6rem; margin-bottom: 4px; }
.ceo-title { color: var(--gold-bright); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.ceo-bio { color: var(--text-muted); }

/* ---------- Trust badges ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  text-align: center;
  padding: 26px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.trust-item svg { width: 30px; height: 30px; color: var(--gold-bright); margin-bottom: 12px; }
.trust-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.trust-badge {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.testi-card .stars { color: var(--gold-bright); margin-bottom: 12px; font-size: 0.9rem; }
.testi-card .name { font-family: var(--font-head); color: var(--text); font-weight: 600; margin-top: 14px; font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.contact-card .icon-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon-circle svg { width: 26px; height: 26px; color: #17130a; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-pill {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold-bright); }
.social-pill svg { width: 18px; height: 18px; }

/* ---------- Floating contact button ---------- */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.floating-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-menu a {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.floating-menu a svg { width: 18px; height: 18px; color: var(--gold-bright); }
.floating-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--glow);
}
.floating-toggle svg { width: 26px; height: 26px; color: #17130a; }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--gold-bright); }
.footer-grid a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-disclosure {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  font-size: 0.78rem;
  color: #868ba0;
  line-height: 1.7;
}
.footer-bottom {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #6d7288;
}

/* ---------- Page header (privacy policy etc.) ---------- */
.page-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-content { max-width: 820px; margin: 0 auto; padding-bottom: 60px; }
.legal-content h2 { font-size: 1.3rem; margin: 34px 0 12px; color: var(--gold-bright); }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 12px; font-size: 0.96rem; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content a { color: var(--gold-bright); }
