/*
Theme Name: NinjaAssurance Empty Theme
Theme URI: https://ninjaassurance.com
Author: NinjaAssurance
Description: A completely empty theme that displays only custom HTML.
Version: 1.0
*/

/* ========== GLOBAL LAYOUT ========== */
.na-body {
  background: #F7FBF9; /* kBgSoft */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: #1F2937; /* kBodyText */
  margin: 0;
  padding: 0;
}
.na-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ========== HEADER & NAV ========== */
.na-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease;
}
.na-header.na-hide {
  transform: translateY(-120%);
}
.na-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.na-logo-wrap img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.na-logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #0B5D37; /* kDeepGreen */
}
.na-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.na-nav a {
  text-decoration: none;
  color: #1F2937;
  font-size: 14px;
  font-weight: 500;
}
.na-nav a:hover {
  color: #0E7C6B; /* kTealAccent */
}

/* ========== LANGUAGE DROPDOWN (UPDATED) ========== */
.na-lang {
  position: relative;
}
.na-lang-btn {
  padding: 10px 22px;
  border: 2px solid #0A5F3C;
  border-radius: 999px;
  background: #FFFFFF;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0B5D37;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.na-lang-menu {
  position: absolute;
  right: 0;
  width: 200px;
  background: white;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-radius: 10px;
  display: none;
}
.na-lang.open .na-lang-menu {
  display: block;
}
.na-lang-menu li {
  padding: 0;              /* remove padding from li */
}
.na-lang-menu a {
  display: block;          /* makes the whole row clickable */
  width: 100%;
  padding: 8px 16px;       /* move padding here */
  text-decoration: none;
  color: #1F2937;
  font-size: 14px;
  cursor: pointer;
}
.na-lang-menu li:hover,
.na-lang-menu a:hover {
  background: #F0F8F5;
}

/* ========== HERO SECTION ========== */
.na-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  padding: 40px 0 60px;
  align-items: center;
}
.na-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DBEFE3; /* kSageGreen */
  color: #0B5D37;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.na-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.na-hero-title {
  font-size: 34px;
  line-height: 1.1;
  margin: 16px 0 12px;
  color: #0B5D37;
}
.na-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.na-hero-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.na-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.na-hero-badge {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #0B5D37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #0B5D37;
}

/* CTA buttons */
.na-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.na-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #0B5D37;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(11, 93, 55, 0.28);
}
.na-btn-primary:hover {
  background: #0E7C6B;
}
.na-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #D3E5DA;
  background: #F7FBF9;
  color: #0B5D37;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.na-btn-ghost:hover {
  border-color: #0E7C6B;
}

/* Hero visual side */
.na-hero-phone {
  max-width: 320px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0B5D37, #0E7C6B);
  padding: 10px;
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}
.na-hero-phone-inner {
  background: #000;
  border-radius: 24px;
  padding: 6px;
}
.na-hero-phone-screen {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}
.na-hero-phone-screen img {
  width: 100%;
  display: block;
}

/* ========== TRUST BAR ========== */
.na-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 40px;
}
.na-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.na-trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

/* ========== SECTIONS ========== */
.na-section {
  padding: 40px 0;
  border-top: 1px solid #D3E5DA;
}
.na-section-header {
  max-width: 680px;
  margin-bottom: 30px;
}
.na-section-title {
  font-size: 24px;
  margin-bottom: 6px;
  color: #0B5D37;
}
.na-section-kicker {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}
.na-section-text {
  font-size: 14px;
  color: #4b5563;
}

/* Features grid */
.na-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.na-feature-card {
  background: #DBEFE3;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #D3E5DA;
}

/* ========== ICONS/NUMBERS (OPTION B) ========== */
.na-feature-icon,
.na-step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #0A5F3C;   /* deep green outline */
  background: #F0F8F5;          /* soft light green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #0A5F3C;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

/* How it works */
.na-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.na-step-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 16px 18px 18px;
  border: 1px solid #D3E5DA;
}
.na-step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.na-step-text {
  font-size: 14px;
  color: #4b5563;
}

/* Screenshot row */
.na-screens-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.na-screenshot-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}
.phone-frame {
  width: 320px;
  padding: 20px;
  border-radius: 40px;
  border: 12px solid #0A5F3C;
  background: #FFFFFF;
  margin: auto;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
}
.na-screenshot-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.na-screenshot-caption {
  font-size: 13px;
  margin-top: 8px;
  color: #4b5563;
}

/* Who it's for */
.na-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.na-tag {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #DBEFE3;
  color: #0B5D37;
}

/* FAQ preview */
.na-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.na-faq-item {
  padding: 12px 0;
  border-bottom: 1px solid #D3E5DA;
}
.na-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #0B5D37;
  margin-bottom: 4px;
}
.na-faq-a {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.na-footer {
  margin-top: 40px;
  padding: 24px 0 10px;
  border-top: 1px solid #D3E5DA;
  font-size: 13px;
  color: #6b7280;
}
.na-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
.na-footer-links a {
  text-decoration: none;
  color: #0B5D37;
  margin-right: 12px;
  font-weight: 500;
}
.na-footer-links a:hover {
  color: #0E7C6B;
}

/* ===== SAFE READABILITY IMPROVEMENTS (DO NOT BREAK LAYOUT) ===== */
.na-section-text,
.na-faq-a,
.na-step-text {
  font-size: 15px;
  line-height: 1.6;
}
.na-screenshot-caption,
.na-tag {
  font-size: 14px;
}
.na-faq-q {
  font-size: 15px;
  font-weight: 600;
}
.na-hero-list li span:last-child {
  font-size: 15px;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 880px) {
  .na-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
  .na-hero-title {
    font-size: 28px;
  }
  .na-feature-grid,
  .na-how-grid,
  .na-screens-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .na-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .na-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ========== BACK TO TOP BUTTON ========== */
#na-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #0B5D37;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(11, 93, 55, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
#na-back-to-top.na-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#na-back-to-top:focus {
  outline: 2px solid #FACC15;
  outline-offset: 2px;
}

/* ========== NEW STYLES FOR THREE SIMPLE STEPS SECTION ========== */
.na-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.na-step {
  background: #F0F8F5;
  padding: 24px;
  border-radius: 20px;
  flex: 1;
  min-width: 260px;
}
