    /* RESET */
    
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    /* Make tool-actions span full screen width */
    /* Make the action section fill its container */
    
    .tool-actions {
        width: 100%;
        max-width: 600px;
        margin: 40px auto;
        padding: 20px 0;
    }
    /* Flex to push icons left/right */
    
    .action-icons {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
    }
    
    .tool-actions .action-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: wrap;
    }
    /* Style individual items */
    
    .tool-actions .action-item {
        display: flex;
        align-items: center;
    }
    /* Always show labels */
    
    .hover-label {
        display: inline !important;
        opacity: 1 !important;
        margin-left: 5px;
        transition: none !important;
    }
    
    body {
        font-family: 'Open Sans', sans-serif;
        background: #f8fafc;
        color: #0f172a;
    }
    
    .tool-reviews {
        background-color: #faf9f7;
    }
    
    .review-card {
        border-radius: 20px;
    }
    
    .avatar {
        width: 48px;
        height: 48px;
        object-fit: cover;
        background: #eef2f6;
    }
    
    .expert-badge {
        background-color: #e7f7ef;
        color: #16a34a;
        font-size: 0.7rem;
        padding: 4px 8px;
        border-radius: 12px;
        display: inline-block;
        margin-top: 4px;
    }
    
    .review-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    /* WRAPPER */
    
    .tool-wrapper {
        width: 100%;
        max-width: 1280px;
        margin: auto;
        padding: 40px 20px;
    }
    
    textarea[readonly] {
        background-color: #fff !important;
        opacity: 1 !important;
    }
    /* ---------------- HERO ---------------- */
    
    .tool-hero {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
        gap: 48px;
    }
    
    .tool-badge {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: #facc15;
        margin-bottom: 16px;
    }
    
    .tool-hero h1 {
        font-size: 59.6px;
        font-weight: 800;
        line-height: 60px;
        letter-spacing: -3px;
        color: #1e293b;
        margin-bottom: 20px;
    }
    
    .tool-hero p {
        font-size: 18px;
        font-weight: 400;
        line-height: 29.25px;
        color: #475569;
        max-width: 560px;
        margin-bottom: 24px;
    }
    /* STATS */
    
    .tool-stats {
        display: flex;
        gap: 16px;
    }
    
    .tool-stats div {
        background: #ffffff;
        border-radius: 14px;
        padding: 18px 22px;
        text-align: center;
        min-width: 100px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }
    
    .tool-stats strong {
        display: block;
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
    }
    
    .tool-stats small {
        font-size: 12px;
        color: #64748b;
    }
    /* ---------------- TOOL CARD ---------------- */
    
    .tool-card {
        width: 100%;
        background: #fff;
        border-radius: 22px;
        padding: 32px;
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 112px;
    }
    
    .tool-input label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #64748b;
        margin-bottom: 10px;
        display: block;
    }
    
    .tool-input textarea {
        width: 100%;
        height: 160px;
        padding: 16px;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        font-size: 15px;
        resize: none;
    }
    /* OUTPUT */
    
    .tool-output {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .tool-output label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #64748b;
        margin-bottom: 10px;
        display: block;
        margin-top: -26px;
    }
    
    .tool-output textarea {
        width: 100%;
        height: 160px;
        padding: 16px;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        font-size: 15px;
        resize: none;
    }
    
    .qr-preview {
        background: #f8fafc;
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 16px;
        margin-top: 30px;
    }
    
    .qr-preview img {
        width: 160px;
        height: 160px;
    }
    
    .btn-primary {
        background: #0f172a;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        border: none;
        padding: 12px 22px;
        border-radius: 12px;
        cursor: pointer;
    }
    /* ---------------- HOW TO UTILIZE ---------------- */
    
    .tool-info {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 48px;
        align-items: flex-start;
    }
    
    .tool-steps h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 32px;
    }
    
    .tool-steps ul {
        list-style: none;
        position: relative;
        padding-left: 36px;
    }
    
    .tool-steps ul::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #fde68a;
    }
    
    .tool-steps li {
        position: relative;
        margin-bottom: 32px;
    }
    
    .tool-steps li::before {}
    
    .tool-steps ul {
        counter-reset: step;
    }
    
    .tool-steps li::after {
        counter-increment: step;
        content: counter(step);
        position: absolute;
        left: -36px;
        top: 0;
        width: 28px;
        height: 28px;
        background: #facc15;
        color: #0f172a;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tool-steps strong {
        font-size: 16px;
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
    }
    
    .tool-steps p {
        font-size: 15px;
        line-height: 26px;
        color: #475569;
    }
    
    .video-heading {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .play-circle {
        width: 16px;
        height: 16px;
        background: #d4af37;
        border-radius: 50%;
        color: #1e293b;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-title {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 3.6px;
        text-transform: uppercase;
        color: #1e293b;
    }
    /* ---------------- DOCUMENTATION ---------------- */
    
    .tool-docs {
        background: #0f172a;
        color: #ffffff;
        padding: 40px;
        border-radius: 24px;
    }
    
    .tool-docs h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 12px;
    }
    
    .tool-docs p {
        color: #cbd5f5;
        margin-bottom: 16px;
    }
    
    .link-btn {
        color: #facc15;
        font-weight: 700;
        text-decoration: none;
    }
    /* ---------------- REVIEWS ---------------- */
    /* CONTRIBUTION BUTTON */
    
    .contribute-btn {
        width: 232px;
        height: 48px;
        padding: 16px 32px;
        border-radius: 12px;
        background: #1e293b;
        color: #facc15;
        font-size: 14px;
        font-weight: 700;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
    }
    /* MODAL STYLES */
    
    .review-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        font-family: Inter, system-ui, sans-serif;
    }
    
    .review-modal-content {
        width: 90%;
        max-width: 1200px;
        background: #faf9f6;
        border-radius: 28px;
        padding: 40px;
    }
    
    .review-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .review-modal-header h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #111827;
    }
    
    .review-modal-header p {
        margin: 6px 0 0;
        color: #6b7280;
        font-size: 14px;
    }
    
    .review-modal-header button {
        border: none;
        background: #e5edf7;
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .review-modal-body {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }
    /* LEFT PANEL */
    
    .review-modal-left {
        flex: 1 1 60%;
        background: linear-gradient(160deg, #1f2937, #0f172a);
        border-radius: 26px;
        padding: 36px;
        color: white;
    }
    
    .review-modal-left h3 {
        margin: 0;
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .review-modal-left p {
        margin: 10px 0 30px;
        font-size: 13px;
        color: #9ca3af;
    }
    
    .modal-input-group {
        margin-bottom: 22px;
    }
    
    .modal-input-group label {
        font-size: 11px;
        color: #9ca3af;
        letter-spacing: 1px;
    }
    
    .modal-input {
        margin-top: 8px;
        background: #1e293b;
        padding: 14px 16px;
        border-radius: 14px;
        color: #9ca3af;
    }
    
    .modal-rating {
        margin-top: 10px;
        color: #facc15;
        font-size: 18px;
    }
    
    .modal-textarea {
        margin-top: 8px;
        background: #1e293b;
        height: 120px;
        border-radius: 14px;
        padding: 14px;
        color: #9ca3af;
        font-size: 14px;
    }
    
    .modal-submit-btn {
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 999px;
        background: #8b7a3c;
        color: white;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
    }
    
    .modal-note {
        margin-top: 14px;
        font-size: 11px;
        color: #9ca3af;
        text-align: center;
    }
    /* RIGHT PANEL */
    
    .review-modal-right {
        flex: 1 1 35%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .guidelines-card {
        background: white;
        border-radius: 26px;
        padding: 26px;
        border: 1px solid #eef0f3;
    }
    
    .guidelines-card h4 {
        margin: 0 0 16px;
        font-size: 16px;
    }
    
    .guidelines-card ul {
        padding-left: 0;
        list-style: none;
        color: #6b7280;
        font-size: 14px;
    }
    
    .guidelines-card ul li {
        margin-bottom: 12px;
    }
    
    tool-input .guidelines-image {
        height: 200px;
        border-radius: 26px;
        background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)), url('/assets/images/guidelines.jpg') center/cover no-repeat;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        color: white;
        font-size: 14px;
    }
    
    .review-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 cards per row */
        gap: 20px;
        /* spacing between cards */
    }
    
    .review-card {
        cursor: pointer;
        height: 120px;
        /* collapsed height */
        overflow: hidden;
        /* hide extra content */
        transition: all 0.3s ease;
        position: relative;
        padding: 24px;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }
    
    .review-card.expanded {
        height: auto;
        /* expands on click */
    }
    /* Gradient "read more" overlay */
    
    .review-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
        display: block;
        pointer-events: none;
    }
    
    .review-card.expanded::after {
        display: none;
    }
    /* Responsive: fewer cards on smaller screens */
    
    @media (max-width: 1200px) {
        .review-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .review-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .review-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .review-card.expanded {
        max-height: 1000px;
        /* expand to show full content */
    }
    
    .tool-reviews h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 24px;
    }
    
    .review-card {
        background: #ffffff;
        padding: 24px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }
    
    .review-card strong {
        font-weight: 700;
    }
    
    .review-card span {
        display: block;
        color: #008c17;
        margin: 6px 0;
    }
    
    .reviews-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 32px;
    }
    
    grid .tool-reviews h3 {
        font-size: 22px;
        font-weight: 800;
    }
    
    .reviews-subtext {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #475569;
        margin-top: 6px;
    }
    
    .contribute-btn {
        width: 232px;
        height: 48px;
        padding: 16px 32px;
        border-radius: 12px;
        background: #1e293b;
        color: #facc15;
        font-size: 14px;
        font-weight: 700;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .plus-icon {
        font-size: 14px;
        line-height: 1;
    }
    
    .review-card {
        background: #ffffff;
        padding: 24px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }
    
    .review-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    
    .user-info {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .user-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    .verified-badge {
        display: block;
        font-size: 11px;
        color: #22c55e;
        font-weight: 600;
    }
    
    .review-date {
        font-size: 12px;
        color: #94a3b8;
    }
    
    .stars {
        color: #facc15;
        margin-bottom: 8px;
        display: block;
    }
    
    .avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .expert-badge {
        font-size: 11px;
        font-weight: 600;
        color: #16a34a;
        /* green */
    }
    
    .review-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
    }
    
    .review-date {
        font-size: 12px;
        color: #94a3b8;
    }
    
    .contribute-btn {
        width: 232px;
        height: 48px;
        background: #1e293b;
        border-radius: 12px;
        padding: 16px 32px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #facc15;
        font-weight: 700;
        border: none;
        cursor: pointer;
    }
    
    .add-icon {
        width: 20px;
        height: 20px;
        background: #facc15;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #0f172a;
    }
    
    .doc-link {
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #d4af37;
        text-decoration: none;
    }
    
    .doc-link .arrow {
        font-size: 12px;
        line-height: 1;
    }
    
    .tool-steps ul {
        list-style: none;
        /* removes browser numbers */
        padding-left: 36px;
        /* space for yellow circles */
        counter-reset: step;
    }
    
    .tool-steps li {
        position: relative;
    }
    
    .youtube-wrapper {
        position: relative;
        width: 469.34px;
        border-radius: 18px;
        overflow: hidden;
        cursor: pointer;
    }
    
    .youtube-wrapper img {
        width: 100%;
        display: block;
    }
    
    .play-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        color: white;
        background: rgba(0, 0, 0, 0.35);
    }
    
    .tool-breadcrumb {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
        padding: 24px 69px;
    }
    
    .breadcrumb-left {
        max-width: 1216px;
        margin: 0 auto;
        font-size: 12px;
        color: #64748b;
    }
    
    .breadcrumb-left .sep {
        margin: 0 8px;
    }
    
    .breadcrumb-left .active {
        color: #1e293b;
        font-weight: 600;
    }
    
    .tool-identity {
        max-width: 1216px;
        margin: 24px auto;
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .tool-icon {
        width: 215px;
        height: 43px;
        object-fit: contain;
    }
    
    .utility-badge {
        display: inline-block;
        background: #d4af37;
        padding: 4px 8px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #1e293b;
    }
    
    .security-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 6px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #1e293b;
        background: #94a3b8;
        padding: 3px 6px;
    }
    /* ---------------- FAQ SECTION ---------------- */
    
    .tool-faq {
        background: #f8fafc;
        padding: 80px 0;
    }
    
    .tool-faq h3 {
        font-size: 28px;
        font-weight: 800;
        color: #1e293b;
        letter-spacing: -0.5px;
    }
    /* Accordion Container */
    
    .tool-faq .accordion-item {
        background: #ffffff;
        border: none;
        border-radius: 18px;
        margin-bottom: 16px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
        overflow: hidden;
    }
    /* Question Button */
    
    .tool-faq .accordion-button {
        background: #ffffff;
        font-size: 16px;
        font-weight: 800;
        /* Bold for high attraction */
        color: #0f172a;
        padding: 20px 24px;
        border-radius: 18px;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    /* Remove Bootstrap default arrow background */
    
    .tool-faq .accordion-button::after {
        filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(1100%) hue-rotate(180deg) brightness(95%);
    }
    /* Hover Effect */
    
    .tool-faq .accordion-button:hover {
        background: #f1f5f9;
        color: #1e293b;
    }
    /* Active State */
    
    .tool-faq .accordion-button:not(.collapsed) {
        background: #1e293b;
        color: #facc15;
        box-shadow: none;
    }
    /* Active Arrow */
    
    .tool-faq .accordion-button:not(.collapsed)::after {
        filter: brightness(0) saturate(100%) invert(87%) sepia(35%) saturate(600%) hue-rotate(1deg) brightness(105%);
    }
    /* Answer Body */
    
    .tool-faq .accordion-body {
        padding: 20px 24px 28px 24px;
        font-size: 15px;
        line-height: 26px;
        color: #475569;
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
    }
    /* Smooth Collapse Animation */
    
    .tool-faq .accordion-collapse {
        transition: all 0.35s ease;
    }
    /* Mobile Responsive */
    
    @media (max-width: 768px) {
        .tool-faq {
            padding: 50px 0;
        }
        .tool-faq h3 {
            font-size: 22px;
        }
        .tool-faq .accordion-button {
            font-size: 14px;
            padding: 16px 18px;
        }
        .tool-faq .accordion-body {
            font-size: 14px;
            padding: 16px 18px 22px 18px;
        }
    }
    /* ===================================================
   GLOBAL RESPONSIVE SAFETY (Non-destructive)
=================================================== */
    
    img,
    video,
    iframe {
        max-width: 127%;
        height: auto;
    }
    
    .tool-wrapper,
    .tool-card,
    .tool-info,
    .tool-hero,
    .review-grid,
    .review-modal-body {
        min-width: 0;
    }
    /* ===================================================
   FIX YOUTUBE FIXED WIDTH (Very Important)
=================================================== */
    
    .youtube-wrapper {
        max-width: 100%;
        width: 100%;
    }
    /* ===================================================
   LARGE TABLET (Below 1200px)
=================================================== */
    
    @media (max-width: 1200px) {
        .tool-hero {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .tool-card {
            grid-template-columns: 1fr;
        }
        .tool-info {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }
    /* ===================================================
   TABLET (Below 992px)
=================================================== */
    
    @media (max-width: 992px) {
        .tool-hero h1 {
            font-size: 42px;
            line-height: 48px;
            letter-spacing: -1px;
        }
        .tool-hero p {
            max-width: 100%;
        }
        .review-grid {
            grid-template-columns: 1fr;
        }
        .review-modal-content {
            padding: 30px;
        }
        .review-modal-left,
        .review-modal-right {
            flex: 1 1 100%;
        }
    }
    /* ===================================================
   MOBILE (Below 768px)
=================================================== */
    
    @media (max-width: 768px) {
        .tool-wrapper {
            padding: 30px 16px;
        }
        .tool-breadcrumb {
            padding: 16px 20px;
        }
        .tool-hero h1 {
            font-size: 32px;
            line-height: 38px;
        }
        .tool-card {
            padding: 22px;
            border-radius: 18px;
        }
        .tool-stats {
            flex-direction: column;
        }
        .tool-stats div {
            width: 100%;
        }
        .review-modal-content {
            width: 95%;
            padding: 24px;
            border-radius: 20px;
        }
        .guidelines-card {
            border-radius: 18px;
        }
    }
    /* ===================================================
   SMALL MOBILE (Below 480px)
=================================================== */
    
    @media (max-width: 480px) {
        .tool-hero h1 {
            font-size: 26px;
            line-height: 32px;
        }
        .tool-hero p {
            font-size: 14px;
            line-height: 22px;
        }
        .tool-badge {
            font-size: 10px;
        }
        .tool-tags span {
            margin-bottom: 6px;
        }
        .tool-card {
            padding: 18px;
        }
        .tool-input textarea,
        .tool-output textarea {
            height: 130px;
        }
        .review-card {
            padding: 18px;
        }
        .contribute-btn {
            width: 100%;
        }
    }
    
    .share-modal {
        border-radius: 15px;
        padding: 10px;
    }
    
    .share-options {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 25px;
        padding: 20px 0;
    }
    
    .share-item {
        text-decoration: none;
        text-align: center;
        cursor: pointer;
    }
    
    .share-item i {
        font-size: 42px;
        margin-bottom: 8px;
        transition: .3s;
    }
    
    .share-item span {
        display: block;
        font-size: 14px;
        color: #555;
    }
    
    .share-item:hover i {
        transform: scale(1.15);
    }
    /* Colors */
    
    .whatsapp {
        color: #25D366;
    }
    
    .messenger {
        color: #0084FF;
    }
    
    .email {
        color: #f39c12;
    }
    
    .sms {
        color: #8e44ad;
    }
    
    .link {
        color: #3498db;
    }
    
    .copy-success {
        color: #28a745 !important;
        font-weight: 600;
        transition: 0.3s ease;
    }
    
    .copy-wrapper.copied i {
        color: #28a745 !important;
    }
    
    .custom-toast {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #2ecc71;
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transform: translateY(20px);
        transition: 0.3s ease;
        z-index: 9999;
    }
    
    .custom-toast.show {
        opacity: 1;
        transform: translateY(0);
    }
    /* =========================================
   SECTION BACKGROUND FLOW SYSTEM
========================================= */
    /* Soft page background gradient */
    
    body {
        background: linear-gradient( to bottom, #f8fafc 0%, #ffffff 40%, #f8fafc 100%);
    }
    /* Alternate light section */
    
    .section-alt {
        background: #f9fbfd;
    }
    /* Soft fade divider between sections */
    
    .section-divider {
        height: 51px;
        background: linear-gradient( to bottom, rgba(137, 139, 143, 0.05), rgba(15, 23, 42, 0));
    }
    /* =========================================
   SCROLL REVEAL ANIMATION
========================================= */
    
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
        padding-top: 22px;
    }
    
    .tool-card,
    .review-card,
    .guidelines-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .tool-card:hover,
    .review-card:hover,
    .guidelines-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 70px rgba(33, 56, 110, 0.12);
    }
    
    section {
        transition: background 0.4s ease;
    }
    
    .tool-reviews {
        background-color: rgb(242, 242, 242);
    }
    /* ================= TOOL ACTION BUTTONS ================= */
    /* TOOL ACTION RESPONSIVE FIX */
    
    .tool-actions-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 1280px;
        width: 100%;
        margin: 40px auto;
        padding: 0 20px;
        gap: 20px;
        box-sizing: border-box;
    }
    /* LEFT SIDE: icons - 30% width */
    
    .tool-actions-wrapper .action-icons-left {
        flex: 0 0 30%;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        padding-left: 5px;
    }
    
    .tool-actions-wrapper .action-icons-left .action-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        padding: 10px;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }
    
    .tool-actions-wrapper .action-icons-left .action-item:hover {
        transform: translateY(-4px);
    }
    
    .tool-actions-wrapper .action-icons-left .hover-label {
        font-size: 12px;
        margin-top: 4px;
        color: #333;
    }
    /* RIGHT SIDE: tags - 70% width */
    
    .tool-actions-wrapper .tool-tags-right {
        display: flex;
        justify-content: space-between;
        /* pushes left & right apart */
        align-items: flex-start;
        flex-wrap: wrap;
        /* allows stacking on small screens */
    }
    
    .tool-actions-wrapper .tool-tags-right .tool-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 1px;
        max-height: 48px;
        /* limits to 2 rows */
        overflow: hidden;
    }
    
    .tool-actions-wrapper .tool-tags-right .tool-tags span {
        background: #f1f1f1;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 9px;
        white-space: nowrap;
    }
    /* RESPONSIVE: stack icons & tags on smaller screens */
    
    @media (max-width: 768px) {
        .tool-actions-wrapper {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        .tool-actions-wrapper .action-icons-left,
        .tool-actions-wrapper .tool-tags-right {
            flex: 1 1 100%;
            justify-content: flex-start;
            padding-left: 0;
            padding-bottom: 22px;
        }
    }