:root {
  --primary: #102A2E;
  --offwhite: #F3F5F0;
  --green: #2FA37A;
  --amber: #E0A93B;
  --text: #1B1F1E;
  --graysteel: #5C6E70;
  --urgency: #7A2222;
  --font-title: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--primary);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.65;
  color: var(--text);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

.light { color: var(--offwhite); }
.light-muted { color: #B9C4C3; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--amber); }

.urgency-bar {
  background: var(--urgency);
  color: var(--offwhite);
  text-align: center;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.urgency-bar p {
  color: var(--offwhite);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

#countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.hero {
  background: var(--primary);
  padding: 40px 0 48px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.brand-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

.hero-title {
  color: var(--offwhite);
  font-size: clamp(1.8rem, 7vw, 2.9rem);
  margin-bottom: 18px;
}

.hero-subtitle {
  color: #D3DBDA;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-subtitle strong {
  color: var(--offwhite);
}

.hero-media {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 30px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(47,163,122,0.3);
}

.hero-trust {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D3DBDA;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 12px;
}

.hero-trust svg {
  width: 13px;
  height: 13px;
  color: var(--green);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 52px;
}

.btn-primary {
  background: linear-gradient(135deg, #37C794, var(--green) 55%, #24886A);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47,163,122,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #40D6A0, #2FA37A 55%, #1F7A5F);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(47,163,122,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hero {
  width: 100%;
  max-width: 400px;
  padding: 18px 26px;
  font-size: 1.12rem;
}

.btn-offer {
  width: 100%;
  padding: 19px 24px;
  font-size: 1.15rem;
  margin-top: 8px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(47,163,122,0.35), 0 0 0 0 rgba(47,163,122,0.55); }
  50% { box-shadow: 0 8px 20px rgba(47,163,122,0.35), 0 0 0 14px rgba(47,163,122,0); }
}

.pulse {
  animation: pulse 2.6s ease-out infinite;
}

.section {
  padding: 56px 0;
}

.section-light { background: var(--offwhite); }
.section-dark { background: var(--primary); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-head .lead {
  color: var(--graysteel);
}

.center-cta {
  text-align: center;
  margin-top: 40px;
}

.center-cta .btn {
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-reverse {
  flex-direction: column;
}

.split-text .lead {
  font-size: 1.05rem;
  color: #B9C4C3;
  margin-bottom: 20px;
}

.expert-role {
  color: var(--amber);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  line-height: 1.5;
}

.split-text .check-list li,
.section-dark .check-list li {
  color: var(--light-check-text, inherit);
}

.section-dark .check-list li {
  color: #D3DBDA;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.check-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 44px;
}

.check-list-grid li {
  color: #D3DBDA;
  position: relative;
  padding-left: 30px;
}

.check-list-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
}

.check-list-grid li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.split-media img {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(16,42,46,0.25);
  border: 1px solid rgba(16,42,46,0.08);
}

.section-dark .split-media img {
  border: 1px solid rgba(47,163,122,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.content-carousel {
  overflow: hidden;
  margin: 0 -24px 40px;
  padding: 4px 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.content-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: chapters-scroll 42s linear infinite;
}

.content-track.paused {
  animation-play-state: paused;
}

@keyframes chapters-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.content-card {
  flex: 0 0 300px;
  width: 300px;
  background: #FFFFFF;
  border: 1px solid rgba(16,42,46,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(16,42,46,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  border-color: var(--green);
  box-shadow: 0 14px 28px rgba(16,42,46,0.1);
}

.content-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
}

.content-number {
  font-family: var(--font-title);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  width: 28px;
}

.content-card-head h3 {
  color: var(--primary);
  font-size: 0.98rem;
  margin: 0;
  flex: 1;
}

.content-card p {
  color: var(--graysteel);
  font-size: 0.9rem;
  padding: 0 18px 18px 60px;
}

.section-dark .content-card {
  background: rgba(243,245,240,0.04);
  border: 1px solid rgba(47,163,122,0.28);
  box-shadow: none;
}

.section-dark .content-card h3 {
  color: var(--offwhite);
}

.section-dark .content-card p {
  color: #B9C4C3;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.proof-strip figure {
  text-align: center;
}

.proof-strip img {
  border-radius: 12px;
  border: 1px solid rgba(47,163,122,0.3);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.proof-strip figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bonus-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,42,46,0.12);
  border: 1px solid rgba(16,42,46,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16,42,46,0.18);
}

.bonus-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green);
  color: var(--offwhite);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.bonus-card-body {
  padding: 22px;
}

.bonus-number {
  display: table;
  margin: 0 auto 10px;
  background: var(--urgency);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
}

.bonus-card-body p {
  color: var(--graysteel);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.bonus-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.old-price {
  color: var(--graysteel);
  text-decoration: line-through;
  font-size: 0.92rem;
}

.new-price {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

.offer-section {
  background: #0A1D20;
}

.offer-card {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  background: var(--offwhite);
  border: 1px solid rgba(47,163,122,0.3);
  border-radius: 22px;
  padding: 40px 28px 32px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
}

.offer-headline {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  margin-bottom: 24px;
}

.offer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 auto 22px;
  max-width: 320px;
}

.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.offer-includes li span {
  display: flex;
  flex-direction: column;
  padding-top: 1px;
}

.offer-includes li em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--graysteel);
  margin-top: 2px;
}

.offer-includes li em strong {
  font-weight: 800;
  color: var(--green);
}

.offer-includes svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.offer-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 26px;
  padding: 10px 14px;
  background: rgba(47,163,122,0.08);
  border-radius: 10px;
}

.offer-social-proof svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--green);
}

.offer-price-block {
  position: relative;
  text-align: center;
  padding: 22px 0 20px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(16,42,46,0.08);
  border-bottom: 1px solid rgba(16,42,46,0.08);
}

.offer-price-old {
  display: block;
  color: var(--graysteel);
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 6px;
}

.offer-price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2px;
}

.offer-price {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(4rem, 15vw, 5.6rem);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(47,163,122,0.35);
}

.offer-price-currency {
  font-size: 1.9rem;
  vertical-align: top;
  position: relative;
  top: 14px;
}

.offer-discount-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
  background: none;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.offer-discount-tag em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 0.85;
}

.offer-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--urgency);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 16px;
}

.offer-urgency strong {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.offer-note {
  text-align: center;
  color: var(--graysteel);
  font-size: 0.78rem;
  margin-top: 14px;
}

.post-purchase {
  max-width: 640px;
  margin: 40px auto 0;
  background: rgba(243,245,240,0.06);
  border: 1px solid rgba(47,163,122,0.3);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.post-purchase h3 {
  color: var(--offwhite);
  margin-bottom: 10px;
}

.post-purchase p {
  color: #B9C4C3;
  font-size: 0.92rem;
}

.receive-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.receive-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.receive-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(47,163,122,0.14);
  border: 1px solid rgba(47,163,122,0.4);
  color: var(--green);
  margin-bottom: 8px;
}

.receive-icon svg {
  width: 18px;
  height: 18px;
}

.receive-step strong {
  color: var(--offwhite);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.receive-step p {
  font-size: 0.8rem;
  color: #A9B4B3;
}

.receive-arrow {
  color: var(--green);
  font-size: 1.1rem;
  transform: rotate(90deg);
}

@media (min-width: 640px) {
  .receive-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }
  .receive-arrow {
    transform: none;
    margin-top: 10px;
  }
}

.guarantee-box {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(47,163,122,0.35);
  border-radius: 16px;
  padding: 34px 26px;
  box-shadow: 0 14px 34px rgba(16,42,46,0.08);
}

.guarantee-icon svg {
  width: 52px;
  height: 52px;
}

.guarantee-box p {
  color: var(--graysteel);
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.credential-card {
  background: rgba(243,245,240,0.05);
  border: 1px solid rgba(47,163,122,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-card strong {
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.credential-card span {
  color: #D3DBDA;
  font-size: 0.9rem;
}

.expert-quote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 18px;
  margin-bottom: 26px;
  font-family: var(--font-title);
  font-style: italic;
  color: var(--offwhite);
  font-size: 1.15rem;
  line-height: 1.5;
}

.expert-quote span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--amber);
}

.expert-story p {
  color: #C6D0CE;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(16,42,46,0.1);
  border: 1px solid rgba(16,42,46,0.06);
  transition: transform 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-header span {
  font-size: 0.78rem;
  color: var(--graysteel);
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(16,42,46,0.12);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  opacity: 1;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--graysteel);
  font-size: 0.9rem;
}

.section-cta-final {
  background: linear-gradient(180deg, var(--primary), #0A1D20);
  text-align: center;
  padding: 64px 0;
}

.section-cta-final h2 {
  color: var(--offwhite);
  max-width: 560px;
  margin: 0 auto 12px;
}

.section-cta-final p {
  color: #C6D0CE;
  margin-bottom: 28px;
}

.section-cta-final .btn {
  margin: 0 auto;
}

.section-support {
  padding: 40px 0;
}

.support-inner {
  text-align: center;
}

.support-inner h3 {
  margin-bottom: 8px;
}

.support-inner p {
  color: var(--graysteel);
}

.support-inner a {
  color: var(--green);
  font-weight: 600;
}

.footer {
  background: var(--primary);
  padding: 30px 0;
  text-align: center;
}

.footer p {
  color: #7D8B8C;
  font-size: 0.75rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .check-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .split-reverse {
    flex-direction: row-reverse;
  }
  .split-text, .split-media {
    flex: 1;
  }
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  }
  .urgency-bar p {
    font-size: 0.8rem;
  }
}

@media (min-width: 1024px) {
  .hero-media {
    max-width: 360px;
  }
}
