	/* ======================
	   RESET
	   ====================== */
	body {
	  font-family: 'Inter', sans-serif;
	  margin: 0;
	  background: #0f172a;
	  color: white;
	}

	.hero,
	.services,
	.pricing,
	.cta,
	.seo-content {
	  max-width: 1100px;
	  margin: 0 auto;
	}

	/* ======================
	   HEADER
	   ====================== */
	.site-header {
	  background: #020617;
	  position: sticky;
	  top: 0;
	  z-index: 1000;
	}

	.container {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0.75rem 1.5rem;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	}

	.logo {
	  height: 50px;
	  width: auto;
	}

	/* ======================
	   NAV
	   ====================== */
	nav {
	  display: flex;
	  gap: 20px;
	}

	nav a {
	  color: white;
	  font-weight: 500;
	  text-decoration: none;
	}

	/* ======================
	   HERO (FIXED)
	   ====================== */
	.hero {
	  padding: 60px 20px 40px;
	  text-align: center;
	}

	.hero-buttons {
	  display: flex;
	  justify-content: center;
	  gap: 12px;
	  flex-wrap: wrap;
	  margin-top: 20px;
	}

	/* ======================
	   BUTTONS
	   ====================== */
	.btn {
	  background: #1e293b;
	  border: 1px solid #22c55e;
	  color: #22c55e;
	  padding: 12px 20px;
	  border-radius: 6px;
	  text-decoration: none;
	  transition: all 0.2s ease;
	  display: inline-block;
	}

	.btn:hover {
	  background: #22c55e;
	  color: #020617;
	}

	/* ======================
	   CARDS
	   ====================== */
	.services, .pricing {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 20px;
	  padding: 2rem;
	}

	.card {
	  background: #1e293b;
	  padding: 20px;
	  border-radius: 10px;
	  max-width: 300px;
	  text-align: center;

	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  min-height: 220px;
	}

	.card p {
	  margin-top: 10px;
	}

	/* ======================
	   CONTACT STRIP
	   ====================== */
	.contact-strip {
	  text-align: center;
	  padding: 1rem;
	  background: #020617;
	}

	/* ======================
	   HANK SYSTEM (FIXED)
	   ====================== */
	.hank-wrapper {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 8px;

	  max-width: 160px;
	  margin: 20px auto;
	  position: relative;
	}

	.hank-wrapper:hover {
	  transform: scale(1.05);
	}

	.hank-img {
	  width: 100%;
	  animation: float 3s ease-in-out infinite;
	}

	@keyframes float {
	  0%, 100% { transform: translateY(0); }
	  50% { transform: translateY(-6px); }
	}

	.speech-bubble {
	  position: absolute;
	  top: -30px;
	  right: -10px;
	  background: white;
	  color: #0f172a;
	  padding: 12px;
	  border-radius: 10px;
	  width: 180px;
	  opacity: 0;
	  transition: 0.3s;
	  pointer-events: none;
	}

	.hank-wrapper:hover .speech-bubble {
	  opacity: 1;
	}

	/* ======================
	   CTA
	   ====================== */
	.cta {
	  text-align: center;
	  padding: 1.5rem 1rem;
	}

	/* ======================
	   SECTION TITLE
	   ====================== */
	   
	 section {
	  margin: 0;
	}

	.section-title {
	  text-align: center;
	  font-size: 1.8rem;
	  margin-top: 40px;
	  margin-bottom: 10px;
	  color: #22c55e;
	}

	.monthly {
	  margin-top: 50px;
	  padding-top: 20px;
	  border-top: 1px solid #1e293b;
	}

	/* ======================
	   FOOTER (TIGHT FIX)
	   ====================== */
	footer {
	  background: #020617;
	  border-top: 1px solid #1e293b;
	  margin-top: 20px;
	}

	.footer-container {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 1rem 1.5rem;

	  display: flex;
	  justify-content: space-between;
	  align-items: flex-start;
	  gap: 10px;
	  flex-wrap: wrap;
	}

	.footer-left,
	.footer-right {
	  display: flex;
	  flex-direction: column;
	  gap: 4px;
	}

	.footer-right {
	  align-items: flex-end;
	  text-align: right;
	}

	.footer-left p,
	.footer-right p {
	  margin: 0;
	}

	.footer-left p:last-child {
	  margin-top: 6px;
	  opacity: 0.7;
	  font-size: 0.85rem;
	}

	footer a {
	  color: #22c55e;
	  text-decoration: none;
	}

	footer a:hover {
	  text-decoration: underline;
	}

	/* ======================
	   TRUST BAR
	   ====================== */
	.trust-bar {
	  display: flex;
	  justify-content: center;
	  gap: 20px;
	  flex-wrap: wrap;
	  margin: 20px 0;
	  font-weight: bold;
	  color: #22c55e;
	  text-align: center;
	}

	.trust-item {
	  display: inline-flex;
	  align-items: center;
	  gap: 6px;
	}

	/* ======================
	   CALL BUTTON
	   ====================== */
	.call-btn {
	  background: transparent;
	  border: 1px solid #22c55e;
	  color: #22c55e;
	  padding: 10px 16px;
	  border-radius: 8px;
	  text-decoration: none;
	  font-weight: 600;
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  transition: all 0.2s ease;
	}

	.call-btn:hover {
	  background: #22c55e;
	  color: #020617;
	}

	/* ======================
	   VETERAN STAMP (IMPROVED)
	   ====================== */
	.veteran-stamp {
	  display: inline-block;
	  margin-top: 10px;
	  padding: 10px 16px;

	  font-weight: 900;
	  font-size: 0.85rem;
	  letter-spacing: 2px;
	  text-transform: uppercase;

	  color: #b91c1c;
	  border: 3px solid #b91c1c;

	  transform: rotate(-3deg);

	  box-shadow:
		0 1px 2px rgba(0,0,0,0.6),
		0 3px 6px rgba(0,0,0,0.4);

	  opacity: 0.95;
	}

	/* ======================
	   MOBILE (CRITICAL FIXES)
	   ====================== */
	@media (max-width: 768px) {

	  .hero {
		padding: 40px 20px 30px;
	  }

	  .hero-buttons {
		flex-direction: column;
		align-items: center;
	  }

	  .hero-buttons .btn {
		width: 100%;
		max-width: 280px;
	  }

	  nav {
		display: none; /* optional if you add hamburger later */
	  }

	  .footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	  }

	  .footer-right {
		align-items: center;
	  }
	}

	/* ======================
	   SEO CONTENT
	   ====================== */
	.seo-content {
	  padding: 1.5rem 1rem;
	  margin: 0 auto;
	}

	.seo-content .container {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center; 
	  gap: 8px;
	  max-width: 700px;
	}

	/* MOBILE STACK */
	@media (max-width: 768px) {
	  .seo-content {
		padding: 1.5rem 1rem;
	  }

.seo-content .container {
  display: block;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* =================
	Accessibility
   ================= */
a:focus,
button:focus {
  outline: 3px solid #00ff88;
  outline-offset: 2px;
}