/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    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', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* ========================================
   HEADER & BANNER
   ======================================== */
.urgent-banner {
    background-color: #DB0000;
    padding: 15px 20px;
    text-align: center;
}

.urgent-banner h2 {
    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: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 auto 30px;
    max-width: 900px;
}

/* ========================================
   VIDEO CONTAINER
   ======================================== */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.video-container img {
    display: block;
    width: 100%;
    height: auto;
}

.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;
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: #153CEF;
    color: #FFFFFF;
    font-size: 14px;
    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;
}

.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;
    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
   ======================================== */
.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 {
    color: #DD0F0F;
    font-size: 23px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* ========================================
   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: 40%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.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;
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.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: center;
}

/* ========================================
   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;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.1;
        margin: 0 0 15px;
        padding: 0 10px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 13px;
        margin: 0 0 20px;
        padding: 0 10px;
        line-height: 1.5;
    }

    .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: 14px;
        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%;
    }

    .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 h2 {
        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;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 21px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .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: 14px;
        padding: 13px 30px;
    }

    .icon-list li {
        font-size: 14px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 12px 12px;
    }

    .accordion-body {
        font-size: 13px;
        padding: 12px;
    }
}

/* ========================================
   RESPONSIVE - LANDSCAPE PHONES
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 25px 15px;
    }

    .video-container {
        max-width: 500px;
    }
}

/* ========================================
   RESPONSIVE - 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;
    }
}

/* ========================================
   ACCESSIBILITY - REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
