/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --patriot-dark: #0d0f1a;
  --patriot-navy: hsl(231, 31%, 15%);
  --patriot-red: #b91c1c;
  --patriot-gold: #d4a017;
  --patriot-white: #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--patriot-white);
  background: var(--patriot-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select { font-family: inherit; }

/* Clickable phone spans */
[data-dial] { cursor: pointer; }
.call-link {
  color: var(--patriot-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.call-link:hover { filter: brightness(1.1); }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.text-center { text-align: center; }

/* ===== FONT CLASSES ===== */
.font-serif {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* ===== STARS PATTERN ===== */
.stars-pattern {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3) 1px, transparent 0),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2) 1px, transparent 0),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.25) 1px, transparent 0),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.15) 1px, transparent 0),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.3) 1px, transparent 0),
    radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.2) 1px, transparent 0),
    radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.15) 1px, transparent 0),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.25) 1px, transparent 0);
}

/* ===== STICKY TOP BAR ===== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(185, 28, 28, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.3);
}
.top-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.top-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.top-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--patriot-white);
}
.top-bar__text a {
  font-weight: 700;
  color: var(--patriot-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top-bar__text a:hover { filter: brightness(1.1); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(231,31%,8%), hsl(231,31%,15%), hsl(0,0%,5%));
}
.hero__stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 64px 16px;
  text-align: center;
}
.hero__logo {
  height: 80px;
  width: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
@media (min-width: 768px) {
  .hero__logo { height: 112px; }
  .hero { min-height: 80vh; }
  .hero__content { min-height: 80vh; }
}

/* Floating emojis */
.hero__emojis {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__emojis span {
  position: absolute;
  font-size: 24px;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .hero__emojis span { font-size: 30px; }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(8px); }
  50% { transform: translateY(-5px) translateX(-5px); }
  75% { transform: translateY(-20px) translateX(3px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-12px) translateX(-10px); }
  66% { transform: translateY(-25px) translateX(6px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(12px); }
}

.hero__badge {
  display: inline-block;
  margin-bottom: 24px;
  border-radius: 9999px;
  border: 1px solid rgba(212, 160, 23, 0.5);
  background: rgba(20, 24, 50, 0.8);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--patriot-gold);
  backdrop-filter: blur(8px);
}

.hero__title {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--patriot-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .hero__title { font-size: 60px; } }
@media (min-width: 1024px) { .hero__title { font-size: 72px; } }

.hero__subtitle {
  max-width: 672px;
  margin: 24px auto 0;
  font-size: 18px;
  color: rgba(245, 245, 245, 0.9);
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .hero__subtitle { font-size: 20px; } }

.hero__cta {
  margin-top: 32px;
}

.hero__phone-text {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.7);
  font-weight: 500;
}
.hero__phone-text a {
  color: var(--patriot-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero__phone-text a:hover { filter: brightness(1.1); }

.hero__access-note {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}
.btn--gold {
  background: var(--patriot-gold);
  color: var(--patriot-dark);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}
.btn--red {
  background: var(--patriot-red);
  color: var(--patriot-white);
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.3);
}
.btn--large {
  padding: 20px 40px;
  font-size: 20px;
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(212, 160, 23, 0.4), 0 0 20px rgba(212, 160, 23, 0.1); }
  50% { box-shadow: 0 0 15px rgba(212, 160, 23, 0.6), 0 0 40px rgba(212, 160, 23, 0.2); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ===== COUNTDOWN TIMER ===== */
.countdown {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__number {
  display: block;
  width: 64px;
  padding: 8px 0;
  border-radius: 6px;
  background: var(--patriot-navy);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--patriot-gold);
  text-align: center;
}
@media (min-width: 768px) { .countdown__number { font-size: 30px; } }

.countdown__label {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 245, 0.7);
}

/* ===== BANNER IMAGE SECTION ===== */
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== PERSONAL CALL SECTION ===== */
.personal-call {
  position: relative;
  background: var(--patriot-navy);
  padding: 64px 16px;
  overflow: hidden;
}
@media (min-width: 768px) { .personal-call { padding: 80px 16px; } }

.personal-call__stars {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.personal-call__inner {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
.personal-call__logo {
  margin: 0 auto 24px;
  height: 48px;
  width: auto;
  opacity: 0.6;
}
.personal-call__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--patriot-gold);
}
@media (min-width: 768px) { .personal-call__title { font-size: 36px; } }

.personal-call__text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.85);
}
.personal-call blockquote {
  max-width: 576px;
  margin: 40px auto 0;
  border-left: 4px solid rgba(212, 160, 23, 0.6);
  padding-left: 24px;
  text-align: left;
}
.personal-call blockquote p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(212, 160, 23, 0.9);
  line-height: 1.6;
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.social-proof {
  background: var(--patriot-dark);
  padding: 64px 16px;
}
@media (min-width: 768px) { .social-proof { padding: 80px 16px; } }

.social-proof__header {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .social-proof__header {
    flex-direction: row;
  }
}
.social-proof__avatar {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.1);
}
@media (min-width: 768px) {
  .social-proof__avatar { width: 192px; height: 192px; }
}
.social-proof__header-text {
  text-align: center;
}
@media (min-width: 768px) {
  .social-proof__header-text { text-align: left; }
}
.social-proof__count {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--patriot-gold);
}
@media (min-width: 768px) { .social-proof__count { font-size: 36px; } }

.social-proof__subtitle {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--patriot-red);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  border-radius: 8px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(20, 24, 50, 0.5);
  padding: 24px;
  text-align: left;
  backdrop-filter: blur(8px);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--patriot-gold);
  color: var(--patriot-gold);
}
.testimonial-card__quote {
  color: rgba(245, 245, 245, 0.8);
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card__author {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--patriot-gold);
}

/* ===== LIMITED SPOTS SECTION ===== */
.limited-spots {
  position: relative;
  background: var(--patriot-navy);
  padding: 64px 16px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) { .limited-spots { padding: 80px 16px; } }

.limited-spots__inner {
  max-width: 672px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.limited-spots__image {
  margin: 0 auto 24px;
  height: 176px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  border: 2px solid rgba(212, 160, 23, 0.2);
}
@media (min-width: 768px) { .limited-spots__image { height: 224px; } }

.limited-spots__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--patriot-gold);
}
@media (min-width: 768px) { .limited-spots__title { font-size: 36px; } }

.limited-spots__text {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.6;
}
.limited-spots__tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--patriot-gold);
}
.limited-spots__tags span {
  border-radius: 9999px;
  border: 1px solid rgba(212, 160, 23, 0.4);
  background: rgba(13, 15, 26, 0.4);
  padding: 6px 16px;
  backdrop-filter: blur(8px);
}

/* ===== FORM SECTION ===== */
.form-section {
  position: relative;
  background: var(--patriot-dark);
  padding: 64px 16px;
}
@media (min-width: 768px) { .form-section { padding: 80px 16px; } }

.form-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.form-section__logo {
  margin: 0 auto 24px;
  height: 56px;
  width: auto;
}
.form-section__title {
  margin-bottom: 8px;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--patriot-gold);
}
@media (min-width: 768px) { .form-section__title { font-size: 36px; } }

.form-section__subtitle {
  margin-bottom: 40px;
  text-align: center;
  color: rgba(245, 245, 245, 0.6);
}

/* Call CTA box */
.call-cta-box {
  margin-bottom: 32px;
  border-radius: 12px;
  border: 2px solid var(--patriot-gold);
  background: rgba(20, 24, 50, 0.8);
  padding: 24px;
  text-align: center;
}
.call-cta-box__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--patriot-white);
  margin-bottom: 4px;
}
.call-cta-box__text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Form grid */
.form-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.form-card {
  border-radius: 8px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(20, 24, 50, 0.3);
  padding: 24px;
}
@media (min-width: 768px) { .form-card { padding: 32px; } }

.form-card__label {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(212, 160, 23, 0.7);
}
.form-card__description {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
}

/* Form inputs */
.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }

.form-input,
.form-select {
  width: 100%;
  border-radius: 6px;
  border: 2px solid rgba(212, 160, 23, 0.3);
  background: var(--patriot-white);
  padding: 12px 16px;
  font-size: 16px;
  color: var(--patriot-dark);
}
.form-input::placeholder { color: rgba(13, 15, 26, 0.4); }
.form-input:focus,
.form-select:focus {
  border-color: var(--patriot-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
}

.form-security {
  text-align: center;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.5);
  margin-top: 16px;
}
.form-or {
  text-align: center;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
  margin-top: 16px;
}
.form-or a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  color: var(--patriot-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 16px;
}
.form-or a:hover { filter: brightness(1.1); }

/* Option 2 card */
.speak-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid rgba(212, 160, 23, 0.5);
  background: linear-gradient(to bottom, rgba(20, 24, 50, 0.6), rgba(13, 15, 26, 0.6));
  padding: 32px;
  text-align: center;
}
.speak-card__label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(212, 160, 23, 0.7);
}
.speak-card__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--patriot-white);
  margin-bottom: 12px;
}
.speak-card__text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}
.speak-card__btn {
  display: block;
  width: 100%;
}
.speak-card__phone {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--patriot-gold);
}
.speak-card__available {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.5);
}
.speak-card__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 16px;
  text-align: center;
}
@media (min-width: 768px) { .final-cta { padding: 80px 16px; } }

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.7), rgba(0,0,0,0.8));
}
.final-cta__stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.final-cta__inner {
  max-width: 672px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.final-cta__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--patriot-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .final-cta__title { font-size: 36px; } }

.final-cta__buttons {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 640px) { .final-cta__buttons { flex-direction: row; } }

.final-cta__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.5);
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}
.sticky-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  background: var(--patriot-red);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--patriot-white);
  box-shadow: 0 2px 10px rgba(185, 28, 28, 0.3);
}
.sticky-cta__call svg { width: 16px; height: 16px; }
.sticky-cta__claim {
  border-radius: 6px;
  border: none;
  background: var(--patriot-gold);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--patriot-dark);
  box-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
  cursor: pointer;
}

/* ===== FLOATING PHONE BUTTON ===== */
.floating-phone {
  position: fixed;
  bottom: 96px;
  right: 16px;
  z-index: 50;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--patriot-red);
  box-shadow: 0 10px 40px rgba(185, 28, 28, 0.5);
  transition: all 0.2s;
}
.floating-phone:hover { transform: scale(1.1); }
.floating-phone svg {
  width: 24px;
  height: 24px;
  color: var(--patriot-white);
}
@media (min-width: 768px) {
  .floating-phone { bottom: 24px; }
}

/* ===== PHONE SVG ICON ===== */
.icon-phone {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* ===== STAR SVG ===== */
.icon-star {
  width: 20px;
  height: 20px;
}

/* ===== TOAST NOTIFICATION ===== */
.noty {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 440px;
  padding: 16px 18px;
  background: linear-gradient(135deg, hsl(231,31%,14%), hsl(231,31%,10%));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,160,23,0.08);
  cursor: pointer;
  overflow: hidden;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.noty--visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.noty--error {
  border-color: rgba(185, 28, 28, 0.5);
}

.noty__icon {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  margin-top: 1px;
}

.noty__body {
  flex: 1;
  min-width: 0;
}
.noty__title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--patriot-gold);
  margin-bottom: 4px;
}
.noty--error .noty__title {
  color: var(--patriot-red);
}
.noty__text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.8);
}

.noty__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(245, 245, 245, 0.4);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.2s;
}
.noty__close:hover {
  color: rgba(245, 245, 245, 0.8);
}

/* Auto-dismiss progress bar */
.noty__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--patriot-gold);
  border-radius: 0 0 12px 12px;
  transform-origin: left;
  animation: noty-progress 5s linear forwards;
}
.noty--error .noty__progress {
  background: var(--patriot-red);
}
@keyframes noty-progress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* Hidden on mobile, visible on sm+ */
@media (max-width: 639px) {
  .sm-only { display: none !important; }
}
