/* style/exclusive-tools.css */
.page-exclusive-tools {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for general text */
    background-color: #f9f9f9; /* Light background for readability */
}

.page-exclusive-tools strong.page-exclusive-tools__keyword {
    color: #003366; /* Main brand color for keyword emphasis */
    font-weight: bold;
}

.page-exclusive-tools__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-exclusive-tools__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    z-index: 1;
}

.page-exclusive-tools__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Golden yellow for hero title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.page-exclusive-tools__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.5;
    color: #e0e0e0;
    z-index: 2;
}

.page-exclusive-tools__hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: -100px;
    opacity: 0.15;
    z-index: 0;
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.page-exclusive-tools__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(50%);
}

/* General Buttons */
.page-exclusive-tools__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
}

.page-exclusive-tools__btn--primary {
    background-color: #FFCC00; /* Golden yellow for primary CTA */
    color: #003366; /* Deep blue text on golden yellow */
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-exclusive-tools__btn--primary:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-exclusive-tools__btn--secondary {
    background-color: #003366; /* Deep blue for secondary CTA */
    color: #FFCC00; /* Golden yellow text on deep blue */
    border: 2px solid #FFCC00;
    margin-left: 15px;
}

.page-exclusive-tools__btn--secondary:hover {
    background-color: #002244; /* Darker blue on hover */
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-exclusive-tools__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Sections */
.page-exclusive-tools__intro,
.page-exclusive-tools__tools-list,
.page-exclusive-tools__advantages,
.page-exclusive-tools__how-to-access,
.page-exclusive-tools__future-development,
.page-exclusive-tools__faq,
.page-exclusive-tools__final-cta {
    padding: 60px 0;
    background-color: #ffffff; /* Default background for content sections */
    border-bottom: 1px solid #eeeeee;
}

.page-exclusive-tools__intro {
    background-color: #f0f5f8; /* Light blue-gray for intro */
}

.page-exclusive-tools__section-title {
    font-size: 2.2em;
    color: #003366; /* Deep blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-exclusive-tools__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Golden yellow underline */
    border-radius: 2px;
}

.page-exclusive-tools__text {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-exclusive-tools__text--small {
    font-size: 0.95em;
}

.page-exclusive-tools__link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-exclusive-tools__link:hover {
    text-decoration: underline;
    color: #FFCC00;
}

/* Tools List */
.page-exclusive-tools__tools-list {
    background-color: #ffffff;
}

.page-exclusive-tools__tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-tools__tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-exclusive-tools__tool-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-exclusive-tools__tool-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 5px solid #FFCC00; /* Golden yellow border */
    padding: 10px;
    background-color: #003366; /* Deep blue background for icons */
}

.page-exclusive-tools__tool-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-exclusive-tools__tool-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    text-align: center;
}

/* Advantages Grid */
.page-exclusive-tools__advantages {
    background-color: #f0f5f8;
}

.page-exclusive-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-exclusive-tools__advantage-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-exclusive-tools__advantage-item:hover {
    transform: translateY(-5px);
}

.page-exclusive-tools__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-exclusive-tools__advantage-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

/* How to Access */
.page-exclusive-tools__how-to-access {
    background-color: #ffffff;
}

.page-exclusive-tools__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    counter-reset: step-counter;
}

.page-exclusive-tools__steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #444444;
}

.page-exclusive-tools__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #FFCC00; /* Golden yellow step number */
    color: #003366; /* Deep blue text on yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.page-exclusive-tools__step-title {
    color: #003366;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-exclusive-tools__cta-group {
    text-align: center;
    margin-top: 40px;
}

/* Future Development */
.page-exclusive-tools__future-development {
    background-color: #f0f5f8;
}

.page-exclusive-tools__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.page-exclusive-tools__faq {
    background-color: #ffffff;
}

.page-exclusive-tools__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-exclusive-tools__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-exclusive-tools__faq-answer {
    font-size: 1.05em;
    color: #555555;
    line-height: 1.7;
}

/* Final CTA */
.page-exclusive-tools__final-cta {
    background-color: #003366; /* Deep blue background for final CTA */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-exclusive-tools__final-cta .page-exclusive-tools__section-title {
    color: #FFCC00; /* Golden yellow title on deep blue */
}

.page-exclusive-tools__final-cta .page-exclusive-tools__section-title::after {
    background-color: #ffffff; /* White underline */
}

.page-exclusive-tools__final-cta .page-exclusive-tools__text {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-exclusive-tools__final-cta .page-exclusive-tools__text--small {
    font-size: 0.95em;
    margin-top: 25px;
}

.page-exclusive-tools__final-cta .page-exclusive-tools__link {
    color: #FFCC00;
}

.page-exclusive-tools__final-cta .page-exclusive-tools__link:hover {
    color: #ffffff;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-exclusive-tools__hero-title {
        font-size: 2.2em;
    }
    .page-exclusive-tools__hero-subtitle {
        font-size: 1.1em;
    }
    .page-exclusive-tools__section-title {
        font-size: 1.8em;
    }
    .page-exclusive-tools__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-exclusive-tools__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-exclusive-tools__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-exclusive-tools__hero {
        padding: 60px 0;
    }
    .page-exclusive-tools__hero-title {
        font-size: 1.8em;
    }
    .page-exclusive-tools__hero-subtitle {
        font-size: 1em;
    }
    .page-exclusive-tools__section-title {
        font-size: 1.6em;
    }
    .page-exclusive-tools__intro,
    .page-exclusive-tools__tools-list,
    .page-exclusive-tools__advantages,
    .page-exclusive-tools__how-to-access,
    .page-exclusive-tools__future-development,
    .page-exclusive-tools__faq,
    .page-exclusive-tools__final-cta {
        padding: 40px 0;
    }
    .page-exclusive-tools__tool-image {
        width: 120px;
        height: 120px;
    }
    .page-exclusive-tools__tool-title {
        font-size: 1.4em;
    }
    .page-exclusive-tools__advantage-title {
        font-size: 1.2em;
    }
    .page-exclusive-tools__steps-list li {
        padding-left: 50px;
    }
    .page-exclusive-tools__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-exclusive-tools__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-exclusive-tools__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-exclusive-tools__hero-title {
        font-size: 1.5em;
    }
    .page-exclusive-tools__hero-subtitle {
        font-size: 0.9em;
    }
    .page-exclusive-tools__section-title {
        font-size: 1.4em;
    }
    .page-exclusive-tools__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-exclusive-tools__cta-group .page-exclusive-tools__btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .page-exclusive-tools__text {
        font-size: 0.95em;
    }
    .page-exclusive-tools__faq-question {
        font-size: 1.1em;
    }
    .page-exclusive-tools__faq-answer {
        font-size: 0.9em;
    }
}