* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Poppins",
    "Poppins Fallback",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Font fallback with matching metrics to prevent CLS */
@font-face {
  font-family: 'Poppins Fallback';
  src: local('Arial');
  size-adjust: 112%;
  ascent-override: 93%;
  descent-override: 22%;
  line-gap-override: 0%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header Section */
.urgent-banner {
  background-color: #db0000;
  padding: 15px 20px;
  text-align: center;
}

.urgent-banner p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Hero Section */
.hero-section {
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  color: #0d0862;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 auto 20px;
  max-width: 900px;
}

.hero-subtitle {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto 30px;
  max-width: 900px;
  min-height: 4.5em;
}

.video-container {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  aspect-ratio: 1200 / 630;
}

.video-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 630;
}

.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0.9;
  background-color: red;
  border-radius: 10px;
  padding: 5px 20px 5px 25px;
  cursor: pointer;
}

.video-container .live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff0000;
  color: white;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.video-container .watch-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #153cef;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 60px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  margin: 20px 0;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button-yellow {
  background-color: #f6d104;
  color: #0b0b0b;
}

/* Problems Section */
.problems-section {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 0;
  padding-top: 80px;
  margin: 0 auto;
  contain: layout style;
}

.wharp {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.problems-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.problems-image img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400 / 717;
  object-fit: cover;
  height: auto;
}

.problems-content {
  width: 60%;
  padding: 60px 60px 20px 40px;
}

.section-title {
  color: #0d0862;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.icon-list {
  list-style: none;
  margin: 6px 0 20px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 19px;
  color: #000;
}

.icon-list li i,
.icon-list li .icon-x {
  color: #dd0f0f;
  font-size: 23px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Inline SVG icon styles */
.icon-play,
.icon-x,
.icon-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-play svg,
.icon-x svg,
.icon-chevron svg {
  display: block;
}

/* Warning Section */
.warning-section {
  background-color: #831c1c;
  padding: 60px 20px 40px;
  text-align: center;
}

.warning-title {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto 15px;
  max-width: 900px;
}

.warning-subtitle {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto;
  max-width: 800px;
}

/* Danger Cards */
.danger-cards {
  background-color: #831c1c;
  padding: 40px 20px 80px;
}

.danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.danger-card {
  background-color: #0f172a;
  border: 3px solid;
  border-radius: 5px;
  padding: 30px 20px;
  text-align: center;
}

.danger-card.red {
  border-color: #fc0404;
}

.danger-card.orange {
  border-color: #ea580b;
}

.danger-card.yellow {
  border-color: #facc13;
}

.danger-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.danger-card.red h3 {
  color: #f87171;
}

.danger-card.orange h3 {
  color: #fc923c;
}

.danger-card.yellow h3 {
  color: #facc13;
}

.danger-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 15px;
}

.danger-badge {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 5px;
}

.danger-badge.red {
  background-color: #dc2627;
}

.danger-badge.orange {
  background-color: #ea580b;
}

.danger-badge.yellow {
  background-color: #ca8a03;
}

/* Solution Section */
.solution-section {
  background-color: #831c1c;
  padding: 0 20px 80px;
  text-align: center;
}

.solution-title {
  color: #f6d104;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.solution-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto 30px;
  max-width: 800px;
}

/* Transformation Section */
.transformation-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.transformation-subtitle {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  margin: 0 auto 40px;
  max-width: 900px;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.stage-card {
  background-color: #ebebeb;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.stage-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.stage-card h3 {
  color: #831c1c;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 10px;
}

.stage-card p {
  font-size: 15px;
  line-height: 20px;
  color: #000;
}

/* NASA Section */
.nasa-section {
  background-color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
}

.nasa-title {
  color: #831c1c;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 auto 30px;
  max-width: 900px;
}

.nasa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.stat-card {
  border: 2px solid;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.stat-card.blue {
  background-color: #111c3e;
  border-color: #60a5fa;
}

.stat-card.green {
  background-color: #0d221e;
  border-color: #4bde80;
}

.stat-card.red {
  background-color: #2b1217;
  border-color: #f87171;
}

.stat-number {
  font-size: 59px;
  font-weight: 800;
  line-height: 41px;
  margin-bottom: 15px;
}

.stat-card.blue .stat-number {
  color: #60a5fa;
}

.stat-card.green .stat-number {
  color: #4bde80;
}

.stat-card.red .stat-number {
  color: #f87171;
}

.stat-label {
  color: #ffffff;
  font-size: 19px;
  line-height: 24px;
}

/* Classified Section */
.classified-section {
  background-color: #f0f0f0;
  padding: 0 20px 80px;
  text-align: center;
}

.classified-label {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.classified-quote {
  color: #000000;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 900px;
  font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #ebebeb;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card img {
  width: 50%;
  border-radius: 5px;
  margin-bottom: 15px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 500;
  color: #000;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  background-color: #f0f0f0;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 0;
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-header {
  background-color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.accordion-header:hover {
  background-color: #f5f5f5;
}

.accordion-header:focus {
  outline: 2px solid #153cef;
  outline-offset: -2px;
}

.accordion-icon {
  font-size: 12px;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 20px;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
}

/* Footer */
.footer {
  background-color: #012155;
  padding: 35px 20px;
  text-align: center;
}

.footer p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 10px auto;
  max-width: 900px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 15px;
    padding: 0 10px;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 14px;
    margin: 0 0 20px;
    padding: 0 10px;
    line-height: 1.5;
    min-height: auto;
  }

  .video-container {
    margin: 15px auto;
    max-width: 100%;
  }

  .video-container .play-button {
    font-size: 35px;
    padding: 5px 18px 5px 22px;
  }

  .video-container .live-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .video-container .watch-count {
    font-size: 12px;
    padding: 5px 10px;
  }

  .cta-button {
    padding: 14px 35px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .wharp {
    flex-direction: column-reverse;
  }

  .problems-section {
    padding: 0;
  }

  .problems-image,
  .problems-content {
    width: 100%;
    /* padding: 20px 15px; */
  }

  .problems-content {
    padding: 40px 15px 20px;
  }

  .problems-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .icon-list {
    padding: 0 10px;
  }

  .icon-list li {
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .icon-list li i {
    font-size: 20px;
    margin-right: 12px;
  }

  .urgent-banner p {
    font-size: 12px;
    line-height: 1.4;
  }

  .warning-section {
    padding: 40px 15px 30px;
  }

  .warning-title {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 15px;
    padding: 0 10px;
  }

  .warning-subtitle {
    font-size: 17px;
    padding: 0 10px;
    line-height: 1.5;
  }

  .danger-cards {
    padding: 30px 15px 50px;
  }

  .danger-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .danger-card {
    padding: 25px 20px;
  }

  .danger-card h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .danger-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .danger-badge {
    padding: 12px 20px;
    font-size: 14px;
  }

  .solution-section {
    padding: 0 15px 50px;
  }

  .solution-title {
    font-size: 24px;
    padding: 0 10px;
    line-height: 1.3;
  }

  .solution-text {
    font-size: 16px;
    margin: 0 0 25px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .transformation-section {
    padding: 50px 15px;
  }

  .transformation-subtitle {
    margin: 0 0 30px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .stage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .stage-card {
    padding: 25px 20px;
  }

  .stage-card h3 {
    font-size: 19px;
    line-height: 1.4;
  }

  .stage-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .stage-card img {
    width: 50%;
    max-width: 200px;
    margin: 0 auto 15px;
  }

  .nasa-section {
    padding: 50px 15px;
  }

  .nasa-title {
    font-size: 24px;
    margin: 0 0 20px;
    padding: 0 10px;
    line-height: 1.3;
  }

  .nasa-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 17px;
    line-height: 1.4;
  }

  .classified-section {
    padding: 0 15px 50px;
  }

  .classified-label {
    padding: 0 10px;
    font-size: 18px;
    line-height: 1.4;
  }

  .classified-quote {
    margin: 15px 0;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .testimonials-section {
    padding: 50px 15px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .testimonial-card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .testimonial-card img {
    width: 50%;
    max-width: 150px;
    margin: 0 auto 15px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-section {
    padding: 50px 20px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 14px 15px;
    line-height: 1.4;
  }

  .accordion-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer p {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 21px;
  }

  .video-container .play-button {
    font-size: 32px;
    padding: 4px 15px 4px 18px;
  }

  .stage-card h3,
  .danger-card h3 {
    font-size: 19px;
  }

  .stat-number {
    font-size: 42px;
  }

  .cta-button {
    font-size: 15px;
    padding: 13px 30px;
  }

  .icon-list li {
    font-size: 14px;
  }

  .accordion-header {
    font-size: 14px;
    padding: 12px 12px;
  }

  .accordion-body {
    font-size: 13px;
    padding: 12px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 25px 15px;
  }

  .video-container {
    max-width: 500px;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .danger-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nasa-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.dis {
  display: none;
}
