/* ==========================================================================
   test-landing.css
   Styles for the dynamic exam landing page (test.php)
   ========================================================================== */

/* --- Header overrides for dark hero --- */
.header__transparent .main-header:not(.header-sticky) .header-signin-btn {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.header__transparent .main-header:not(.header-sticky) .header-signin-btn:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* --- Hero Section --- */
.test-hero-section {
    margin-top: 118px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.test-hero-gradient {
    background: linear-gradient(340deg, #01a3cc 0%, #017296 35%, #014f6d 70%, #013d55 100%);
    padding: 150px 0 20px;
    min-height: calc(100vh - 118px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test-hero-section .container {
    position: relative;
    z-index: 1;
    transform: translateY(-12vh);
}

/* Stagger layout: text upper, image lower-center */
.test-hero-section .row {
    align-items: stretch;
}

/* Decorative background orbs */
.test-hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.test-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* --- Hero: Exam Badge --- */
.hero-exam-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px !important;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 30px;
    letter-spacing: 0.4px;
    line-height: 1;
}

.hero-exam-badge i {
    font-size: 13px;
    opacity: 0.85;
    transform: translateY(-1.0px);
}

/* --- Hero: Content Area --- */
.test-hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.test-hero-section .hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 520px;
}

/* --- Hero: Typography --- */
h1.teasintro {
    color: #fff;
    font-size: 48px;
    margin-top: 45px;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.12;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

h2.teas2nd {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    max-width: 480px;
}

/* --- Hero: Image --- */
.hero-image-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
}

img.teasimg {
    display: block;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.12);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Hero: Body Text --- */
.hero-body-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-body-text p {
    margin-bottom: 10px;
}

.hero-body-text ul,
.hero-body-text ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.hero-body-text li {
    margin-bottom: 6px;
}

/* --- Hero: Bullet Pills --- */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-bullets li {
    color: #fff;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-bullets li:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.hero-bullets li i {
    color: #4ade80;
    margin-right: 10px;
    font-size: 13px;
}

/* --- Hero: Trust Badge --- */
.hero-trust-badge {
    margin-top: 22px;
}

.hero-trust-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-badge i {
    color: #4ade80;
}

/* --- Hero: Stats Line --- */
.hero-stats-line {
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px !important;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    padding-left: 10px;
}

/* --- Hero: University Logo Carousel --- */
.hero-logo-bar {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-tagline {
    color: rgba(255, 255, 255, 0.36);
     margin-top: 20px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

/* --- Hero: CTA Buttons --- */
.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.tp-btnx {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #017296;
    background: #ffffff;
    line-height: 1;
    text-align: center;
    padding: 16px 36px;
    text-transform: capitalize;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.tp-btnx:hover {
    color: #fff;
    background: #015d7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tp-btnx-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    box-shadow: none;
}

.tp-btnx-outline:hover {
    background: #fff;
    color: #017296;
    border-color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* --- Hero: Wave Divider --- */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

/* --- Exam Facts Section --- */
.exam-facts-section {
    background-color: #ffffff;
}

.exam-fact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 15px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.exam-fact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
}

.exam-fact-value {
    font-size: 18px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 4px;
}

.exam-fact-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.exam-fact-scoring,
.exam-fact-notes {
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.exam-sections-table {
    border-radius: 8px;
    overflow: hidden;
}

.exam-sections-table thead {
    background: #017296;
    color: #fff;
}

.exam-sections-table thead th {
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
}

.exam-sections-table tbody td {
    padding: 10px 16px;
}

/* --- Exam Format Section --- */
.exam-format-section {
    background-color: #f8f9fa;
}

.exam-format-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.exam-format-body p {
    margin-bottom: 14px;
}

.exam-format-body ul,
.exam-format-body ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.exam-format-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.exam-format-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #14b8a6;
    font-size: 14px;
}

.exam-format-body ol {
    counter-reset: item;
}

.exam-format-body ol li {
    counter-increment: item;
}

.exam-format-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-format-more-wrap {
    margin-top: 8px;
}

.exam-format-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.exam-format-toggle:hover {
    color: #017296;
}

.exam-format-toggle i {
    font-size: 11px;
}

.exam-format-hidden {
    margin-top: 14px;
}

.exam-format-bullets {
    list-style: none;
    padding: 0;
}

.exam-format-bullets li {
    padding: 8px 0;
    font-size: 15px;
    color: #374151;
}

/* --- Exam Overview Section --- */
.exam-overview-section {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.exam-overview-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.exam-overview-body p {
    margin-bottom: 16px;
}

.exam-overview-body ul,
.exam-overview-body ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.exam-overview-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.exam-overview-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #017296;
    font-size: 14px;
}

.exam-overview-body ol {
    counter-reset: item;
}

.exam-overview-body ol li {
    counter-increment: item;
}

.exam-overview-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Features Section --- */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(1, 114, 150, 0.1);
    color: #017296;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.feature-title {
    font-weight: 600;
    color: #0e1133;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
}

.features-section .col-lg-10 {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.features-section .col-lg-10 p {
    margin-bottom: 14px;
}

.features-section .col-lg-10 ul,
.features-section .col-lg-10 ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.features-section .col-lg-10 li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* --- Practice Preview Section --- */
.practice-preview-section {
    background-color: #ffffff;
}

.preview-qbank-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(1, 114, 150, 0.07);
    color: #017296;
    font-size: 11px;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(1, 114, 150, 0.15);
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.4;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.preview-qbank-note i {
    font-size: 11px;
    flex-shrink: 0;
}

.preview-qbank-note strong {
    font-weight: 700;
}

.practice-preview-widget {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.preview-question-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.preview-question-text {
    font-size: 16px;
    line-height: 1.7;
    color: #0e1133;
}

.preview-choice {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 8px 0;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preview-choice:hover {
    border-color: #017296;
    background: rgba(1, 114, 150, 0.05);
}

.preview-choice .choice-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    margin-right: 12px;
    flex-shrink: 0;
}

.preview-choice .choice-text {
    font-size: 15px;
    color: #374151;
}

.preview-choice.choice-correct {
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
}

.preview-choice.choice-correct .choice-label {
    background: #16a34a;
    color: #fff;
}

.preview-choice.choice-incorrect {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.preview-choice.choice-incorrect .choice-label {
    background: #dc2626;
    color: #fff;
}

.preview-explanation {
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.preview-explanation p {
    margin-bottom: 10px;
}

.preview-explanation p:last-child {
    margin-bottom: 0;
}

.preview-explanation ul,
.preview-explanation ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.preview-explanation li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
}

.preview-explanation ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 13px;
}

.preview-complete {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.pp-next-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* --- Sample Question Section --- */
.sample-q-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sample-q-stem {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.sample-q-choice {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 8px 0;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.sample-q-choice .choice-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    margin-right: 12px;
    flex-shrink: 0;
}

.sample-q-correct {
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.06);
}

.sample-q-correct .choice-label {
    background: #16a34a;
    color: #fff;
}

.correct-badge {
    margin-left: auto;
    color: #16a34a;
    font-weight: 600;
    font-size: 13px;
}

.sample-q-explanation {
    margin-top: 20px;
    padding: 16px;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #017296;
    font-size: 14px;
    line-height: 1.6;
}

.sample-q-explanation i {
    color: #017296;
}

/* --- Study Plan Section --- */
.study-plan-section {
    background-color: #ffffff;
}

.study-plan-steps {
    position: relative;
    padding-left: 40px;
}

.study-plan-steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.study-plan-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    position: absolute;
    left: -40px;
    z-index: 1;
}

.step-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
    flex: 1;
    border: 1px solid #e5e7eb;
}

.step-content p {
    margin: 0;
    font-size: 15px;
    color: #374151;
}

.study-plan-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.study-plan-body p {
    margin-bottom: 14px;
}

.study-plan-body ul,
.study-plan-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.study-plan-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: #f8f9fa;
}

.faq-section .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: #0e1133;
    font-size: 16px;
    padding: 16px 20px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(1, 114, 150, 0.05);
    color: #017296;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

/* --- Testimonial Section --- */
.testimonial-section {
    background: #f8f9fa;
}

.testimonial-carousel-container {
    position: relative;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.video-container {
    position: relative;
    padding-top: 177.77%;
    background: #000;
    cursor: pointer;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-container:hover video {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(1, 114, 150, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(1, 114, 150, 1);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #017296;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: #015d7a;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-carousel {
        gap: 15px;
    }

    .testimonial-carousel-container {
        padding: 0 40px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #017296;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #017296;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: #017296;
    margin: 20px 0;
}

.price-duration {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #017296;
    background: transparent;
    color: #017296;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.pricing-btn:hover {
    background: #017296;
    color: white;
}

.popular .pricing-btn {
    background: #017296;
    color: white;
}

.popular .pricing-btn:hover {
    background: transparent;
    color: #017296;
}

.feature-list {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #4b5563;
}

.feature-list li i {
    color: #017296;
    margin-right: 10px;
}

p.price-footer {
    margin-top: 10px;
    color: #000;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

/* --- Pricing: One-Time Payment Note --- */
.pricing-one-time-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 114, 150, 0.08);
    color: #017296;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 24px;
    border: 1px solid rgba(1, 114, 150, 0.2);
    margin-bottom: 0;
}

.pricing-one-time-note i {
    font-size: 14px;
}

/* --- Related Links Section --- */
.related-links-section {
    background-color: #ffffff;
}

.related-group-title {
    color: #0e1133;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #017296;
    display: inline-block;
}

.related-link-card {
    display: block;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 120px;
    transition: all 0.3s ease;
    position: relative;
}

.related-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #017296;
    color: inherit;
    text-decoration: none;
}

.related-link-type-badge {
    display: inline-block;
    background: rgba(1, 114, 150, 0.1);
    color: #017296;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.related-link-title {
    font-weight: 600;
    color: #0e1133;
    margin-bottom: 6px;
}

.related-link-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.5;
}

.related-link-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #017296;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-link-card:hover .related-link-arrow {
    opacity: 1;
}

/* --- Generic Content Block Section --- */
.generic-content-section {
    border-top: 1px solid #e5e7eb;
}

.generic-content-section:nth-of-type(odd) {
    background-color: #ffffff;
}

.generic-content-section:nth-of-type(even) {
    background-color: #f8f9fa;
}

.generic-block-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.generic-block-body p {
    margin-bottom: 14px;
}

.generic-block-body ul,
.generic-block-body ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.generic-block-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.generic-block-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #017296;
    font-size: 14px;
}

.generic-block-body ol {
    counter-reset: item;
}

.generic-block-body ol li {
    counter-increment: item;
}

.generic-block-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generic-block-body h3,
.generic-block-body h4,
.generic-block-body h5 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0e1133;
}

/* --- Styled Bullets: All Remaining Body Content Areas --- */
/* Hero body text */
.hero-body-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.hero-body-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.hero-body-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* Study plan body (when rendered from block body instead of JSON steps) */
.study-plan-body ul,
.study-plan-body ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.study-plan-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.study-plan-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #017296;
    font-size: 14px;
}

.study-plan-body ol {
    counter-reset: item;
}

.study-plan-body ol li {
    counter-increment: item;
}

.study-plan-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ accordion body (answer HTML from backend) */
.faq-section .accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.faq-section .accordion-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.faq-section .accordion-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #017296;
    font-size: 14px;
}

.faq-section .accordion-body ol {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.faq-section .accordion-body ol li {
    counter-increment: item;
}

.faq-section .accordion-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features section body (optional body text below feature cards) */
.features-section .col-lg-10 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.features-section .col-lg-10 li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.features-section .col-lg-10 ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #017296;
    font-size: 14px;
}

/* --- Body Content: Inner Card Treatment --- */
/* Shared class — wraps subsections of body text in card-like containers */
.body-content-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.body-content-card h3,
.body-content-card h4,
.body-content-card h5 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0e1133;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.body-content-card h3::before,
.body-content-card h4::before,
.body-content-card h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #017296;
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Auto-card: when body content has h3/h4 headings, give them card styling */
.exam-overview-body h3,
.exam-overview-body h4,
.exam-format-body h3,
.exam-format-body h4,
.generic-block-body h3,
.generic-block-body h4 {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #017296;
    font-size: 17px;
    font-weight: 700;
}

/* Two-column card grid for explicit inner-card layouts */
.body-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .body-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    h1.teasintro {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
    }

    h2.teas2nd {
        font-size: 16px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .test-hero-gradient {
        padding: 50px 0 20px;
    }

    .test-hero-section .container {
        transform: translateY(-4vh);
    }

    .test-hero-section .hero-content {
        padding-top: 30px;
    }

    .hero-exam-badge {
        font-size: 8px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero-bullets li {
        padding: 7px 14px;
        font-size: 13px;
    }

    .hero-btn-group {
        margin-top: 22px;
    }

    .hero-logo-bar {
        margin-top: 24px;
        padding-top: 14px;
    }

    .hero-logo-tagline {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

    .hero-trust-badge span {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-stats-line {
        font-size: 7px !important;
        margin-top: 10px;
    }

    .tp-btnx {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-wave-divider {
        height: 40px;
    }

    .test-hero-section .hero-content p {
        max-width: 100%;
    }

    .hero-body-text {
        max-width: 100%;
    }

    .preview-qbank-note {
        font-size: 9px;
        padding: 4px 10px;
    }

    .exam-fact-card {
        padding: 16px 12px;
    }

    .exam-fact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .exam-fact-value {
        font-size: 15px;
    }

    .practice-preview-widget {
        padding: 20px;
    }

    .preview-question-card {
        padding: 16px;
    }

    .preview-choice {
        padding: 10px 12px;
    }

    .sample-q-card {
        padding: 20px;
    }

    .study-plan-steps {
        padding-left: 30px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        left: -30px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .pricing-card {
        padding: 20px;
    }

    .price-amount {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .exam-facts-grid .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ==========================================================================
   UI VARIETY OVERHAUL — Enhanced Visual Components
   ========================================================================== */

/* --- Section Header Badge (pill above titles) --- */
.section-header-badge {
    display: inline-block;
    background: rgba(1, 114, 150, 0.1);
    color: #017296;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* --- Section Divider (gradient line between sections) --- */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #017296, transparent);
    max-width: 120px;
    margin: 0 auto 30px;
    border: none;
    opacity: 0.4;
}

/* --- Gradient Background Variants --- */
.section-bg-gradient-light {
    background: linear-gradient(180deg, #f0f7fa 0%, #ffffff 100%);
}

.section-bg-gradient-brand {
    background: linear-gradient(135deg, #f8fdff 0%, #eef7fa 50%, #f8f9fa 100%);
}

/* --- Exam Facts: Accent Top Borders --- */
.exam-fact-card.accent-1 { border-top: 3px solid #017296; }
.exam-fact-card.accent-2 { border-top: 3px solid #0ea5e9; }
.exam-fact-card.accent-3 { border-top: 3px solid #06b6d4; }
.exam-fact-card.accent-4 { border-top: 3px solid #14b8a6; }
.exam-fact-card.accent-5 { border-top: 3px solid #0891b2; }
.exam-fact-card.accent-6 { border-top: 3px solid #0284c7; }

/* --- Exam Overview: Two-Column Layout --- */
.overview-highlights-card {
    background: linear-gradient(135deg, #017296 0%, #015d7a 100%);
    border-radius: 16px;
    padding: 30px 24px;
    color: #fff;
    height: fit-content;
}

.overview-highlights-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.overview-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.overview-highlight-item i {
    color: #4ade80;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.overview-highlight-item span {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.overview-cta-link {
    display: inline-block;
    margin-top: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.3s;
}

.overview-cta-link:hover {
    border-color: #fff;
    color: #fff;
}

/* --- Exam Format: Nav Pills Tabs --- */
.format-tabs .nav-pills .nav-link {
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    margin: 0 4px 8px;
    transition: all 0.3s ease;
}

.format-tabs .nav-pills .nav-link:hover {
    border-color: #017296;
    color: #017296;
}

.format-tabs .nav-pills .nav-link.active {
    background: #017296;
    color: #fff;
    border-color: #017296;
}

.format-tab-pane {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.format-tab-stat {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.format-tab-stat:last-child {
    border-bottom: none;
}

.format-tab-stat i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(1, 114, 150, 0.1);
    color: #017296;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 14px;
}

.format-tab-stat .stat-label {
    font-size: 13px;
    color: #6b7280;
}

.format-tab-stat .stat-value {
    font-weight: 600;
    color: #0e1133;
    font-size: 15px;
}

/* --- Features: Nth-child Accent Colors --- */
.feature-card:nth-child(6n+1) .feature-icon-wrap { background: rgba(1, 114, 150, 0.1); color: #017296; }
.feature-card:nth-child(6n+2) .feature-icon-wrap { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.feature-card:nth-child(6n+3) .feature-icon-wrap { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.feature-card:nth-child(6n+4) .feature-icon-wrap { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feature-card:nth-child(6n+5) .feature-icon-wrap { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.feature-card:nth-child(6n+6) .feature-icon-wrap { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* --- Features: Expand Button & Body Content --- */
.features-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 24px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.features-expand-btn:hover {
    background: rgba(1, 114, 150, 0.06);
    border-color: #017296;
    color: #017296;
}

.features-expand-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.features-expand-btn:not(.collapsed) .features-expand-icon {
    transform: rotate(180deg);
}

.features-expand-btn:not(.collapsed) .features-expand-label::after {
    content: ' ▾';
}

.features-body-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    line-height: 1.7;
    font-size: 15px;
    color: #374151;
}

/* --- Study Plan: Enhanced Zigzag Timeline --- */
.study-plan-steps::before {
    background: linear-gradient(180deg, #017296, #0ea5e9, #14b8a6) !important;
    width: 3px !important;
}

.step-number {
    box-shadow: 0 0 0 4px rgba(1, 114, 150, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-plan-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(1, 114, 150, 0.25);
}

.step-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-plan-step:hover .step-content {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* --- Practice Preview: Browser Frame Mockup --- */
.browser-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
}

.browser-frame-header {
    background: #1e293b;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #22c55e; }

.browser-frame-url {
    flex: 1;
    background: #334155;
    border-radius: 4px;
    padding: 4px 12px;
    margin-left: 8px;
    font-size: 12px;
    color: #94a3b8;
}

.browser-frame-body {
    background: #f8f9fa;
    padding: 30px;
}

.question-type-badge {
    display: inline-block;
    background: rgba(1, 114, 150, 0.1);
    color: #017296;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* --- FAQ: Sidebar Layout --- */
.faq-sidebar-card {
    background: linear-gradient(160deg, #019bc2 0%, #017296 40%, #015270 100%);
    border-radius: 16px;
    padding: 36px 28px;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 100px;
}

.faq-sidebar-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.faq-sidebar-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.faq-sidebar-card h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-sidebar-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

.faq-count-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.faq-sidebar-card .btn-light {
    background: #fff;
    color: #017296;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 11px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.faq-sidebar-card .btn-light:hover {
    background: #e6f4f9;
    color: #015270;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.accordion-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #017296;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.faq-section .accordion-button {
    display: flex;
    align-items: center;
}

/* --- Testimonials: Decorative Quote --- */
.testimonial-quote-decor {
    font-size: 48px;
    color: #017296;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -10px;
}

/* --- Pricing: Ribbon Badge --- */
.pricing-ribbon {
    position: absolute;
    right: -8px;
    background: linear-gradient(135deg, #017296, #0ea5e9);
    color: white;
    padding: 6px 20px 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(1, 114, 150, 0.3);
    z-index: 2;
    transform: translateY(-100%);
    top: 0;
}

.pricing-card.popular {
    box-shadow: 0 8px 30px rgba(1, 114, 150, 0.15);
    overflow: visible;
}

.pricing-section .row.g-4 {
    margin-top: 30px;
}

.pricing-card-header-strip {
    height: 4px;
    background: linear-gradient(90deg, #017296, #0ea5e9);
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 20px;
}

/* --- Related Links: Color-Coded Badges --- */
.related-link-type-badge.badge-exam { background: rgba(1, 114, 150, 0.1); color: #017296; }
.related-link-type-badge.badge-resource { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.related-link-type-badge.badge-category { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.related-link-type-badge.badge-custom { background: rgba(107, 114, 128, 0.1); color: #6b7280; }

/* --- WOW.js Animation Delay Helpers --- */
.wow-delay-1 { animation-delay: 0.1s !important; }
.wow-delay-2 { animation-delay: 0.2s !important; }
.wow-delay-3 { animation-delay: 0.3s !important; }
.wow-delay-4 { animation-delay: 0.4s !important; }
.wow-delay-5 { animation-delay: 0.5s !important; }
.wow-delay-6 { animation-delay: 0.6s !important; }
.wow-delay-7 { animation-delay: 0.7s !important; }
.wow-delay-8 { animation-delay: 0.8s !important; }

/* --- Responsive Adjustments for New Components --- */
@media (max-width: 991px) {
    .overview-highlights-card {
        margin-bottom: 40px;
    }

    .faq-sidebar-card {
        position: static;
        margin-bottom: 30px;
    }

    .pricing-ribbon {
        right: -6px;
        font-size: 11px;
        padding: 5px 16px 5px 12px;
    }
}

@media (max-width: 767px) {
    .browser-frame-body {
        padding: 20px;
    }

    .browser-frame-header {
        padding: 8px 12px;
    }

    .overview-highlights-card {
        padding: 24px 20px;
    }

    .faq-sidebar-card {
        padding: 24px 20px;
    }

    .format-tabs .nav-pills .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }

    .format-tab-pane {
        padding: 16px;
    }

    .pricing-card-header-strip {
        margin: -20px -20px 16px;
    }
}
