/* =============================================
   WE BUY ANY BUSINESS — Global Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.7;
}

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

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

/* --- Colour Palette ---
   Navy:   #0a2342  (primary trust colour)
   Gold:   #c9952a  (accent / CTA)
   Light:  #f4f7fb  (section backgrounds)
   White:  #ffffff
   Text:   #1a1a2e
   Muted:  #5a6a7e
*/

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #0a2342;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #2d3748; }

.lead {
  font-size: 1.2rem;
  color: #5a6a7e;
  max-width: 680px;
}

/* --- Layout --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-light { background: #f4f7fb; }
.section-navy  { background: #0a2342; color: #ffffff; }
.section-navy h2, .section-navy h3, .section-navy p { color: #ffffff; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: #c9952a;
  color: #ffffff;
  border-color: #c9952a;
}
.btn-gold:hover { background: #a67820; border-color: #a67820; }

.btn-outline {
  background: transparent;
  color: #0a2342;
  border-color: #0a2342;
}
.btn-outline:hover { background: #0a2342; color: #ffffff; }

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover { background: #ffffff; color: #0a2342; }

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; }

/* --- Header / Nav --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a2342;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo span { color: #c9952a; }

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  color: #ccd6f6;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
  color: #c9952a;
  border-bottom-color: #c9952a;
}

.nav-cta {
  background: #c9952a;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 4px;
  border-bottom: none !important;
}
.nav-cta:hover { background: #a67820 !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Footer --- */
footer {
  background: #060f1e;
  color: #8896a7;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { color: #8896a7; font-size: 0.9rem; }

footer h4 { color: #ffffff; margin-bottom: 16px; font-size: 1rem; }

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: #8896a7; font-size: 0.9rem; transition: color 0.2s; }
footer ul a:hover { color: #c9952a; }

.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: #c9952a; }

.footer-bottom {
  border-top: 1px solid #1a2a3a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #0a2342 0%, #0d3060 60%, #0a2342 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,149,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 { color: #ffffff; margin-bottom: 20px; }
.hero-content h1 em { color: #c9952a; font-style: normal; }
.hero-content .lead { color: #ccd6f6; margin-bottom: 32px; max-width: 100%; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: 12px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.hero-card h3 { color: #c9952a; margin-bottom: 20px; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  background: #c9952a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-icon svg { width: 14px; height: 14px; fill: #ffffff; }
.trust-item p { color: #ccd6f6; margin: 0; font-size: 0.95rem; }

/* --- Pain Points Band --- */
.pain-band {
  background: #c9952a;
  padding: 20px 0;
}

.pain-band-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pain-item {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(10,35,66,0.08);
  border-top: 4px solid #c9952a;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10,35,66,0.14);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #f4f7fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p { color: #5a6a7e; margin: 0; font-size: 0.95rem; }

/* --- Steps --- */
.steps { counter-reset: step; }

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8eef6;
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.step-num {
  width: 56px;
  height: 56px;
  background: #0a2342;
  color: #c9952a;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { color: #5a6a7e; margin: 0; }

/* --- Criteria boxes --- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.criteria-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}

.criteria-box h4 { color: #c9952a; margin-bottom: 8px; }
.criteria-box p { color: #ccd6f6; font-size: 0.9rem; margin: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0a2342, #0d3060);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: #ffffff; margin-bottom: 16px; }
.cta-banner p { color: #ccd6f6; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Finance options --- */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.finance-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(10,35,66,0.08);
  border-left: 4px solid #c9952a;
}

.finance-card h3 { margin-bottom: 12px; color: #0a2342; }
.finance-card p { color: #5a6a7e; margin: 0; font-size: 0.95rem; }

/* --- FAQ accordion --- */
.faq-item {
  border-bottom: 1px solid #e8eef6;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0a2342;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: #c9952a;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: #5a6a7e;
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0a2342;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8eef6;
  border-radius: 4px;
  font-size: 1rem;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a2342;
}

.form-group textarea { min-height: 120px; resize: vertical; }

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

.radio-group { display: flex; gap: 20px; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #f4f7fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-info-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item a, .contact-info-item p { color: #5a6a7e; font-size: 0.95rem; margin: 0; }
.contact-info-item a:hover { color: #c9952a; }

/* --- Page hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #0a2342 0%, #0d3060 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 { color: #ffffff; margin-bottom: 16px; }
.page-hero p { color: #ccd6f6; max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* --- About page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,35,66,0.15);
  background: #0a2342;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder {
  color: #c9952a;
  font-size: 1rem;
  text-align: center;
  padding: 40px;
  opacity: 0.7;
}

.timeline { margin-top: 32px; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  background: #c9952a;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.timeline-item p { color: #5a6a7e; margin: 0; font-size: 0.95rem; }

/* --- Sector tags --- */
.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-tag {
  background: #f4f7fb;
  border: 1px solid #dde6f0;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #0a2342;
  font-weight: 500;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: #c9952a; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.divider {
  width: 60px;
  height: 4px;
  background: #c9952a;
  margin: 16px auto 32px;
  border-radius: 2px;
}

.divider-left {
  margin-left: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 70px 0; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a2342;
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .pain-band-inner { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
