/* ============================================================
   theme-retro.css — NovuLead Component Styles (Bold Theme)
   ============================================================ */

/* --- HEADER --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background-color: rgba(10,10,10,0.97);
  border-bottom: 1px solid #1a1a1a;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem; max-width: 1100px; margin: 0 auto;
}
.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.6rem; letter-spacing: 0.05em;
  color: #fff; text-decoration: none;
}
a.site-logo:visited { color: #fff; }

/* --- NAV --- */
.site-nav ul { list-style: none; display: flex; gap: 0.25rem; align-items: center; }
.site-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #666; text-decoration: none;
  padding: 0.4rem 0.9rem; transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.nav-active { color: #fff; }
.site-nav a:visited { color: #666; }
.site-nav a.nav-active:visited { color: #fff; }
.site-nav a.nav-cta {
  background-color: #ff6a00; color: #000; padding: 0.45rem 1.2rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  margin-left: 0.5rem;
}
.site-nav a.nav-cta:hover { background-color: #ff8c33; color: #000; }
.site-nav a.nav-cta:visited { color: #000; }

/* --- HAMBURGER BUTTON (mobile/tablet only) --- */
.hamburger {
  display: none;                    /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate into X when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .site-nav {
    display: none;                  /* hidden until toggled */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: #0a0a0a;
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-nav.is-open { display: flex; }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
  }
  .site-nav ul li { width: 100%; text-align: center; border-bottom: 1px solid #1a1a1a; }
  .site-nav ul li:first-child { border-top: 1px solid #1a1a1a; }

  .site-nav a {
    display: block;
    font-size: 2rem;
    padding: 1.2rem 2rem;
    color: #888;
  }
  .site-nav a:hover, .site-nav a.nav-active { color: #fff; background: none; }

  .site-nav a.nav-cta {
    clip-path: none;
    background: #ff6a00;
    color: #000;
    margin: 1.5rem auto 0;
    display: inline-block;
    width: auto;
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
  }
  .site-nav ul li:has(a.nav-cta) { border: none; }
}

/* --- HERO --- */
.hero-section {
  min-height: 90vh; display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 0 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,106,0,0.07) 0%, transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
}
.hero-box { padding: 0 2rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: #ff6a00; margin-bottom: 1rem;
}
.hero-title { margin-bottom: 1.5rem; line-height: 0.95; }
.hero-sub { font-size: 1.2rem; color: #777; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-guarantee {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ff6a00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero-stat-bar {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid #1a1a1a;
  margin-top: auto;
}
.stat-item {
  flex: 1; padding: 1.5rem 2rem; text-align: center;
  border-right: 1px solid #1a1a1a;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: #ff6a00; line-height: 1;
}
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #555; }
.stat-divider { display: none; }

/* --- WHY SECTION --- */
.why-section { padding: 5rem 0; border-bottom: 1px solid #1a1a1a; }
.why-header { margin-bottom: 3rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: #1a1a1a; border: 1px solid #1a1a1a; }
.why-card { background: #0a0a0a; padding: 2.5rem 2rem; transition: background 0.2s; }
.why-card:hover { background: #0f0f0f; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 3rem; color: #1e1e1e; line-height: 1; margin-bottom: 1rem;
}
.why-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-card p  { font-size: 0.9rem; color: #666; }

/* --- SERVICES --- */
.services-section { padding: 5rem 0; border-bottom: 1px solid #1a1a1a; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: #1a1a1a; border: 1px solid #1a1a1a; margin-top: 2rem; }
.service-card { background: #0a0a0a; padding: 2.5rem 2rem; }
.service-card--accent { background: #0d0d0d; border-left: 3px solid #ff6a00; }
.service-icon {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 3rem; color: #ff6a00; line-height: 1; margin-bottom: 1rem;
}
.service-card h3 { color: #fff; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.92rem; color: #666; }

/* --- FORM SECTION --- */
.form-section { padding: 5rem 0; border-bottom: 1px solid #1a1a1a; }
.form-header { margin-bottom: 3rem; }
.form-container { max-width: 760px; }
.form-row { margin-bottom: 1.2rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* --- FAQ PAGE --- */
.page-hero { padding: 5rem 0 3rem; border-bottom: 1px solid #1a1a1a; margin-bottom: 3rem; }
.page-intro { font-size: 1.1rem; color: #777; max-width: 600px; margin-top: 1rem; }

.pricing-highlight {
  display: flex; align-items: center; gap: 4rem;
  border: 1px solid #1e1e1e; border-left: 4px solid #ff6a00;
  padding: 2.5rem 3rem; margin-bottom: 3rem; background: #0d0d0d;
}
.pricing-left { min-width: 160px; }
.pricing-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #666; margin-bottom: 0.3rem; }
.pricing-amount {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 3.5rem; color: #ff6a00; line-height: 1;
}
.pricing-amount span { font-size: 1.5rem; color: #555; }
.pricing-right p { color: #777; font-size: 0.95rem; margin-bottom: 0.3rem; }

/* --- FAQ ACCORDION --- */
.faq-list { margin-bottom: 3rem; border: 1px solid #1a1a1a; }
.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600;
  text-align: left; padding: 1.4rem 1.5rem; color: #ccc;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s, background 0.2s;
}
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: #444; flex-shrink: 0; transition: color 0.2s; }
.faq-question:hover { color: #fff; background: #0d0d0d; }
.faq-question[aria-expanded="true"] { color: #ff6a00; }
.faq-question[aria-expanded="true"]::after { content: '−'; color: #ff6a00; }
.faq-answer { display: none; padding: 0 1.5rem 1.4rem; }
.faq-answer.open { display: block; }
.faq-answer p { color: #777; font-size: 0.95rem; }
.faq-answer strong { color: #ccc; }

.faq-cta { text-align: center; padding: 3rem; border: 1px solid #1a1a1a; background: #0d0d0d; }
.faq-cta h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }

/* --- ABOUT PAGE --- */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: #1a1a1a; margin-bottom: 1px; }
.about-statement, .about-contact { background: #0a0a0a; }
.about-statement p { color: #777; font-size: 0.95rem; margin-bottom: 0.8rem; }

.capabilities-box { margin-bottom: 1.5rem; }
.capabilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: #1a1a1a; margin-top: 1.5rem; }
.capability-card { background: #0a0a0a; padding: 1.8rem; }
.cap-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: #ff6a00; margin-bottom: 0.9rem;
}
.capability-card li { font-size: 0.88rem; color: #666; }

.about-cta { text-align: center; padding: 4rem 2rem; border: 1px solid #1a1a1a; margin-top: 2rem; }
.about-cta h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }

/* --- FOOTER --- */
.site-footer { background: #050505; border-top: 1px solid #1a1a1a; padding: 3rem 2rem; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 2rem; color: #222; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.footer-inner p { color: #444; font-size: 0.85rem; margin-bottom: 0.3rem; }
.footer-inner a { color: #666; }
.footer-inner a:hover { color: #ff6a00; }
.footer-nav { margin-top: 1.2rem; display: flex; gap: 1.5rem; justify-content: center; }
.footer-nav a { color: #333; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-nav a:hover { color: #ff6a00; }

/* --- PAGE SECTION --- */
.page-section { padding-bottom: 4rem; }
.page-title { margin-bottom: 0.5rem; }
