/* ===== Reset + Tokens ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1220;
  --navy-2: #121C30;
  --navy-3: #1B2840;
  --ink: #0A0E14;
  --amber: #F5A623;
  --amber-dark: #D48A0C;
  --blue: #1E6AE5;
  --blue-dark: #1654B8;
  --red: #E63946;
  --white: #FFFFFF;
  --bg: #F6F8FB;
  --line: #E4E8EF;
  --muted: #5B6577;
  --text: #1C232E;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(10,14,20,.06), 0 2px 8px rgba(10,14,20,.04);
  --shadow-md: 0 4px 16px rgba(10,14,20,.08);
  --shadow-lg: 0 12px 40px rgba(10,14,20,.14);
  --maxw: 1180px;
  --t: all .18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin-bottom: 1em; }
strong { font-weight: 700; color: var(--ink); }

/* ===== Call Bar (top, mobile-first) ===== */
.callbar {
  background: var(--ink);
  color: #E9EDF5;
  font-size: 0.88rem;
  padding: 8px 0;
  text-align: center;
}
.callbar a { color: var(--amber); font-weight: 600; }
.callbar-sep { opacity: .4; margin: 0 10px; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--t);
}
.nav-links a:hover { color: var(--blue); }
.nav-links .btn-nav {
  background: var(--amber);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-links .btn-nav:hover { background: var(--amber-dark); color: var(--ink); }
.nav-call {
  display: none;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 62px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 500px; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links .btn-nav { margin-top: 8px; text-align: center; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(245,166,35,.12), transparent 60%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(30,106,229,.15), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 4px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 span.hl { color: var(--amber); }
.hero-sub {
  color: #C3CBDA;
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-proof-item strong {
  display: block;
  color: var(--amber);
  font-size: 1.8rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-proof-item span {
  color: #9BA5B8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero form card */
.hero-form {
  background: var(--white);
  color: var(--text);
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-form h3 {
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 1.35rem;
}
.hero-form .form-lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.hero-form .form-group { margin-bottom: 14px; }
.hero-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--t);
  background: var(--white);
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,106,229,.12);
}
.hero-form .form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.form-error {
  background: #FFF4E5;
  border: 1.5px solid #F5A623;
  color: #6B4A00;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 72px; }
  .hero-proof { gap: 20px; }
  .hero-proof-item strong { font-size: 1.4rem; }
}

/* ===== Trust Bar ===== */
.trustbar {
  background: var(--ink);
  color: #C3CBDA;
  padding: 22px 0;
  border-top: 3px solid var(--amber);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trustbar-inner.trustbar-3 { grid-template-columns: repeat(3, 1fr); }
.trustbar-item strong {
  display: block;
  color: var(--amber);
  font-family: 'Archivo', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.trustbar-item span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ===== Sections ===== */
.section {
  padding: 88px 0;
}
.section-alt { background: var(--bg); }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #C3CBDA; }

.section-heading {
  margin-bottom: 16px;
  text-align: center;
}
.section-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-dark .section-intro { color: #9BA5B8; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-intro { margin-bottom: 36px; }
}

/* ===== Qualification Checker ===== */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.qual-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--t);
  position: relative;
}
.qual-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.qual-card-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.qual-card h3 { margin-bottom: 10px; }
.qual-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 880px) {
  .qual-grid { grid-template-columns: 1fr; }
}

/* ===== How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 10px;
}
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Target Brands ===== */
.brands {
  background: var(--bg);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  font-weight: 600;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.brands-list span {
  opacity: 0.8;
}

/* ===== No Fee Promise ===== */
.promise {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.15), transparent 70%);
  pointer-events: none;
}
.promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.promise-label {
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.promise h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 20px;
}
.promise p {
  color: #C3CBDA;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 28px;
}
.promise-fine {
  font-size: 0.82rem !important;
  color: #8A94A8 !important;
  margin-top: 28px !important;
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q:hover { color: var(--blue); }
.faq-q::after {
  content: '+';
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  transition: var(--t);
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 0 22px 0;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: block;
  color: var(--text);
  transition: var(--t);
}
.blog-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text);
}
.blog-card-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.blog-card h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}
.blog-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.blog-card-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}
@media (max-width: 880px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== CTA Strip ===== */
.cta-strip {
  background: var(--amber);
  color: var(--ink);
  padding: 44px 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--ink);
  font-size: 1.6rem;
  margin: 0;
}
.cta-strip .btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.cta-strip .btn-dark:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: #9BA5B8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand span { color: var(--amber); }
.footer p { font-size: 0.92rem; color: #9BA5B8; line-height: 1.6; }
.footer h4 {
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: #C3CBDA;
  font-size: 0.93rem;
  transition: var(--t);
}
.footer ul a:hover { color: var(--amber); }
.footer-contact a { color: var(--amber); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 0.82rem;
  color: #6B7588;
  line-height: 1.7;
}
.footer-bottom p { color: #6B7588; font-size: 0.82rem; }
.footer-disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #6B7588;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Mobile Sticky Call Button ===== */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: var(--amber);
  color: var(--ink);
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.mobile-call:hover { color: var(--ink); background: var(--amber-dark); }
@media (max-width: 720px) {
  .mobile-call { display: block; }
  body { padding-bottom: 80px; }
}

/* ===== Article Pages ===== */
.article-header {
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 56px 0 40px;
}
.article-breadcrumb {
  color: #9BA5B8;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.article-breadcrumb a { color: var(--amber); }
.article-tag {
  display: inline-block;
  background: rgba(245,166,35,.15);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.article-header h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 18px;
}
.article-meta {
  color: #C3CBDA;
  font-size: 0.92rem;
}
.article-body {
  padding: 56px 0 80px;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
}
.article-content h2 {
  margin: 40px 0 18px;
  font-size: 1.65rem;
}
.article-content h3 {
  margin: 28px 0 12px;
  font-size: 1.2rem;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.1em;
}
.article-content ul, .article-content ol {
  margin: 0 0 1.1em 1.5em;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 4px solid var(--amber);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  color: var(--navy);
  font-style: italic;
  background: var(--bg);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
}
.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  text-align: center;
}
.article-cta h3 { color: var(--white); margin-bottom: 10px; }
.article-cta p { color: #C3CBDA; margin-bottom: 20px; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
