/* ========================================
   Full Test Page Styles
   Specific styles for full_test.html
   ======================================== */

:root {
    --tan-color: hsl(38.1, 68.3%, 62.9%);
    --title-text-color: #333;
    /* #D4A574;*/
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, #006d94 0%, #0086B3 50%, #00a8e0 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    color: #fff;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-arrow {
    width: 80px;
    height: auto;
    animation: arrow-bounce 2s ease-in-out infinite;
}

.hero-arrow.left-arrow {
    animation-delay: 0s;
}

.hero-arrow.right-arrow {
    animation-delay: 0.5s;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.hero-main-image {
    width: 250px;
    max-width: 40%;
    height: auto;
}

.hero-subtitle {
    color: #fff;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin-top: 10px;
    opacity: 0.95;
}

/* ----------------------------------------
   Comparison Section
   ---------------------------------------- */
.comparison-section {
    /*  background: linear-gradient(180deg, #0086B3 0%, #fff 5%, #f5f5f5 100%);
      background: linear-gradient(180deg, #0086B3 0%, #E8F4F8 15%, #fff 40%, #f5f5f5 100%);*/
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    color: var(--title-text-color);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 40px;
}

/* Section 1 & 2 title overrides */
.comparison-section .section-title,
.reading-callout-section .section-title {
    color: #2c3e50 !important;
    margin-bottom: 70px;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 700 !important;
}

/* Fade-only animation (no position change) for table elements */
.comparison-header.pre-fade,
.comparison-row.pre-fade {
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 0.8s ease-out;
}

.comparison-header.pre-fade.fade-in,
.comparison-row.pre-fade.fade-in {
    opacity: 1 !important;
}

.comparison-grid {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
}

.comparison-header {
    background: #fff;
    /*
    background: #f8f8f8 !important;
    background: #d4a574;
    */
    border-bottom: 2px solid #eee;
}

.comparison-col {
    padding: 30px 20px;
    text-align: center;
}

.comparison-col.left {
    border-right: none;
}

.comparison-col.center {
    background: var(--tan-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    padding: 20px 10px;
}

.comparison-col.right {
    border-left: none;
}

.comparison-header .comparison-col {
    font-size: 29px;
    font-weight: 800;
    color: #333;
    letter-spacing: 1px;
    padding-bottom: 0px;
}

.comparison-row {
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header .comparison-col.center {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top: 40px;
    /* Space for the icon */
}

.comparison-row:last-child .comparison-col.center {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.comparison-row .comparison-col h3 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.comparison-row .comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    display: block;
    max-width: 250px;
    text-align: left !important;
    padding-left: 20px;
}

.comparison-row .comparison-col ul li {
    margin-bottom: 8px;
    text-align: left !important;
    position: relative;
    padding-left: 20px;
}

.comparison-row .comparison-col ul li::before {
    content: "•";
    color: #0086B3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.arrow-down {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.arrow-down.large-arrow {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}

.comparison-icon {
    width: 140px;
    height: auto;
    max-width: 100%;
}

.header-icon {
    max-width: 100%;
    width: 160px;
    /* Much bigger */
    height: auto;
    display: block;
    margin-top: -30px;
    /* Overlap top */
    position: relative;
    z-index: 10;
}

/* ----------------------------------------
   Reading Callout & Timeline Section
   ---------------------------------------- */
.reading-callout-section {
    background: #fff;
    padding: 60px 20px 40px;
}

.reading-callout-box {
    max-width: 600px;
    margin: 0 auto 50px;
    background: var(--tan-color);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
}

.reading-callout-box p {
    color: #333;
    font-size: 26px;
    line-height: 1.6;
    margin: 0;
}

.reading-callout-box strong {
    font-weight: 700;
}

/* Icon Timeline */
.icon-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 60%;
    left: 10%;
    right: 10%;
    height: 15px;
    background: var(--tan-color);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-number {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-icon {
    width: 130px;
    height: auto;
}

/* ----------------------------------------
   Instructions Section - "You should:" Box
   ---------------------------------------- */
.instructions-section {
    background: #fff;
    padding: 20px 20px 60px;
}

.you-should-box {
    max-width: 800px;
    margin: 0 auto;
    background: #0086B3;
    border-radius: 30px;
    padding: 40px 50px;
}

.you-should-title {
    color: #fff;
    font-size: 29px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.you-should-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.you-should-item {
    flex: 1;
    text-align: center;
}

.you-should-image {
    display: block;
    width: 160px;
    height: auto;
    margin: 0 auto 15px;
}

.you-should-item p {
    color: #fff;
    font-size: 19px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.you-should-item .underline {
    text-decoration: underline;
    font-weight: 700;
}

/* ----------------------------------------
   Get Ready Section
   ---------------------------------------- */
.get-ready-section {
    background: linear-gradient(180deg, #118AB2 0%, #06D6A0 100%);
    padding: 60px 20px;
}

.get-ready-section .section-title {
    color: #fff;
}

.get-ready-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 3px solid #333;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.important-notice {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.important-notice strong {
    color: #d32f2f;
}

.recommendation {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.note {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0086B3 0%, #00b8d4 50%, #0086B3 100%);
    background-size: 200% 100%;
    color: #f3f7f8;
    font-size: 24px;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 134, 179, 0.3);
    opacity: 1;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    margin-bottom: 20px;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 500% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-button:hover {
    animation: none;
    background: linear-gradient(135deg, #00b8d4 0%, #0086B3 100%) !important;
    background-size: 100% 100% !important;
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 184, 212, 0.5);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.4);
    opacity: 0.9;
}

.disclaimer {
    color: #999;
    font-size: 13px;
    font-style: italic;
}

/* ----------------------------------------
   Mobile Styles
   ---------------------------------------- */
@media (max-width: 768px) {

    /* Hero Mobile */
    .hero-section {
        padding: 40px 15px 60px;
    }

    .hero-visual {
        flex-direction: row;
        gap: 10px;
    }

    .hero-arrow {
        width: 40px;
    }

    .hero-main-image {
        width: 150px;
        max-width: 50%;
    }

    /* Comparison Mobile - Stacked Layout */
    .comparison-section {
        padding: 40px 15px;
    }

    .comparison-section .section-title {
        margin-bottom: 30px;
    }

    .comparison-grid {
        border-radius: 15px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 100px 1fr;
    }

    .comparison-col {
        padding: 20px 10px;
    }

    .comparison-col.center {
        width: 100px;
    }

    .comparison-header .comparison-col {
        font-size: 19px;
    }

    .comparison-row .comparison-col h3 {
        font-size: 14px;
    }

    .comparison-row .comparison-col ul {
        font-size: 12px;
    }

    .comparison-icon {
        width: 80px;
    }

    .comparison-header .comparison-col.center {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        padding-top: 40px;
        /* Space for the icon */
    }

    .comparison-row:last-child .comparison-col.center {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-icon {
        width: 98px;
        margin-top: -40px;
        max-width: 120%;
    }

    .comparison-header .comparison-col.center {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .arrow-down.large-arrow {
        font-size: 40px;
        margin-bottom: 10px;
    }

    /* Reading Callout Mobile */
    .reading-callout-section {
        padding: 40px 15px 30px;
    }

    .reading-callout-box {
        padding: 20px 25px;
        margin-bottom: 40px;
    }

    .reading-callout-box p {
        font-size: 22px;
    }

    .timeline-icon {
        width: 90px;
    }

    .timeline-line {
        height: 10px;
    }

    .timeline-number {
        font-size: 16px;
    }

    /* Instructions Mobile - You Should Box */
    .instructions-section {
        padding: 0 15px 40px;
    }

    .you-should-box {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .you-should-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .you-should-items {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .you-should-image {
        width: 140px;
    }

    .you-should-item p {
        font-size: 18px;
        text-align: center;
    }

    /* Get Ready Mobile */
    .get-ready-section {
        padding: 40px 15px;
    }

    .get-ready-box {
        padding: 25px 20px;
    }

    .important-notice {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 60px 1fr;
    }

    .comparison-col.center {
        width: 60px;
        padding: 15px 5px;
    }

    .comparison-icon {
        width: 45px;
    }

    .comparison-header .comparison-col {
        font-size: 13px;
    }

    .comparison-row .comparison-col h3 {
        font-size: 12px;
    }

    .comparison-row .comparison-col ul {
        font-size: 11px;
    }

    .section-title {
        font-size: 21px;
    }
}

/* Mobile Fixes for Icons, Green Box, Button (<450px) */
@media (max-width: 450px) {

    /* 2. Green Box Container */
    .get-ready-box {
        padding: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 3. Warning Text */
    .important-notice {
        font-size: clamp(14px, 4vw, 18px) !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    /* 5. Disclaimer */
    .disclaimer {
        font-size: clamp(11px, 3.5vw, 14px) !important;
        line-height: 1.4;
        opacity: 0.8;
    }

    /* 6. Other Text in Box */
    .recommendation,
    .note {
        font-size: clamp(14px, 4vw, 16px) !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    /* 7. Comparison Columns Padding & List Indentation */
    .comparison-col {
        padding: 10px 5px !important;
    }

    .comparison-row .comparison-col ul {
        padding-left: 5px !important;
        /* Drastically reduced from 20px */
    }

    .comparison-row .comparison-col ul li {
        padding-left: 10px !important;
        /* Reduced from 20px */
    }

    /* 8. Reading Callout Text Scaling */
    .reading-callout-box {
        padding: 20px 25px !important;
    }

    .reading-callout-box p {
        font-size: clamp(16px, 4vw, 22px) !important;
    }
}