/* ============================================================
   Keyword Research Extension — Page Styles
   File: keyword-research-extension.css
   Builds on top of Rankyfy common.css + typography.css
   ============================================================ */

/* ---- Video / Browser (your existing) ---- */
:root {
    --secondary-color: #09090b;
}

.browser_component .screen,
video {
    border-radius: inherit;
    z-index: 0;
    width: 100%;
    object-fit: cover;
}
.browser_component {
    padding: clamp(1rem, 1rem + 0vw, 1rem);
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: #09090b;
    border-radius: 1em;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    align-items: stretch;
    font-size: 1.5rem;
    display: flex;
    position: relative;
    box-shadow: inset 0 1px 1px #ffffff1f;
    margin-bottom: -200px;
}
.browser_screen {
    z-index: 5;
    border-radius: .5em;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.browser--magicborder {
    z-index: 2;
    position: absolute;
    inset: 0%;
}
.highlight-text {
    color: var(--primary-color) !important;
}
.hero-wrap {
    background-color: #000;
    color: #FFF;
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.kre-trust-bar {
    background: #fff;
    padding: 60px 0 60px; /* large top to clear browser_component overlap */
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.kre-trust-label {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    opacity: 1;
}
.kre-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 40px;
}
.kre-trust-item {
    font-size: 1rem;
    font-weight: 700;
    color: #ccc;
    padding: 0 10px;
    transition: color 0.3s;
}
.kre-trust-item:hover { color: var(--primary-color); }
.kre-trust-sep { color: #e0e0e0; }
.kre-trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.kre-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.kre-stat strong {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    display: block;
}
.kre-stat span {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}
.kre-stat-div {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.08);
}
@media (max-width: 767px) {
    /* .kre-trust-bar { padding-top: 220px; } */
    .kre-stat { padding: 20px; }
    .kre-stat-div { display: none; }
}


/* ============================================================
   SECTION BASE
   ============================================================ */
.kre-section {
    padding: 100px 0;
    position: relative;
}
.kre-section--light { background: #fff; }
.kre-section--dark  { background: var(--secondary-color); }
.kre-section--gray  { background: #f6f7ff; }

.text-white-60 { color: rgba(255,255,255,0.65) !important; opacity: 1 !important; }

.kre-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,85,0,0.1);
    border: 1px solid rgba(255,85,0,0.2);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}
.kre-section-label--light {
    background: rgba(255,85,0,0.15);
    border-color: rgba(255,85,0,0.3);
}
.kre-section-title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 16px;
}
.kre-accent {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}
.kre-section-desc {
    color: #666;
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 1rem;
    opacity: 1;
}
.kre-section-intro {
    margin-bottom: 60px;
}
.kre-section-intro .kre-section-desc { margin-bottom: 0; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.kre-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kre-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}
.kre-check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,85,0,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23FF5500' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    margin-top: 2px;
}
.kre-check-list--light li { color: rgba(255,255,255,0.8); }
.kre-check-list--light li::before {
    background-color: rgba(255,85,0,0.25);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.kre-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.kre-btn--primary {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(255,85,0,0.35);
}
.kre-btn--primary:hover {
    background: #e04a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255,85,0,0.45);
    color: #fff !important;
}
.kre-btn--lg { padding: 18px 40px; font-size: 1.1rem; }


/* ============================================================
   UI CARD (Section 1 visual)
   ============================================================ */
.kre-ui-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.kre-ui-card__header {
    background: var(--secondary-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kre-ui-card__dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.kre-ui-card__dot.red    { background: #ff5f57; }
.kre-ui-card__dot.yellow { background: #febc2e; }
.kre-ui-card__dot.green  { background: #28c840; }
.kre-ui-card__url {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-left: 8px;
}
.kre-ui-card__body { padding: 24px; }

/* Score gauge */
.kre-score-row {
    display: flex;
    gap: 24px;
    align-items: center;
}
.kre-score-gauge {
    flex-shrink: 0;
    text-align: center;
    width: 110px;
}
.kre-gauge-svg { width: 110px; height: 80px; }
.kre-gauge-fill {
    transition: stroke-dashoffset 1.2s ease;
}
.kre-gauge-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: -16px;
    line-height: 1;
}
.kre-gauge-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.kre-score-details { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.kre-score-row-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.kre-score-label { width: 110px; flex-shrink: 0; color: #666; }
.kre-score-bar-wrap {
    flex: 1;
    height: 5px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}
.kre-score-bar { height: 100%; border-radius: 3px; }
.kre-score-val { width: 40px; text-align: right; font-weight: 700; font-size: 12px; color: #333; }
.kre-medium { color: #ffc107 !important; }
.kre-easy   { color: #28a745 !important; }
.kre-hard   { color: #dc3545 !important; }


/* ============================================================
   ISSUE / KW CHIP CARD (Section 2 visual)
   ============================================================ */
.kre-issue-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(8px);
}
.kre-issue-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
}
.kre-issue-card__title em { font-style: normal; color: var(--primary-color); }
.kre-kw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.kre-kw-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    transition: all 0.2s;
    cursor: pointer;
}
.kre-kw-chip span { color: rgba(255,255,255,0.8); font-weight: 500; }
.kre-kw-chip em   { color: var(--primary-color); font-style: normal; font-weight: 700; }
.kre-kw-chip:hover,
.kre-kw-chip--hot {
    background: rgba(255,85,0,0.15);
    border-color: rgba(255,85,0,0.3);
}
.kre-paa-block {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.07);
}
.kre-paa-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.kre-paa-item {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: color 0.2s;
}
.kre-paa-item:last-child { border-bottom: none; }
.kre-paa-item:hover { color: var(--primary-color); }


/* ============================================================
   TABLE CARD (Section 3 visual)
   ============================================================ */
.kre-table-card {
    background: #f6f7ff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.kre-table-card__head {
    background: var(--secondary-color);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.kre-table-wrap { overflow-x: auto; }
.kre-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.kre-table th {
    background: rgba(17,20,81,0.05);
    padding: 10px 14px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.kre-table td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: middle;
    opacity: 1;
    color: #555;
}
.kre-table tr:last-child td { border-bottom: none; }
.kre-table tr:hover td { background: rgba(255,85,0,0.03); }
.kre-kw-name { font-weight: 600; color: var(--secondary-color) !important; }
.kre-traffic { font-weight: 700; color: var(--primary-color) !important; }
.kre-pos { font-weight: 700; font-size: 12px; padding: 2px 7px; border-radius: 4px; }
.kre-pos--1   { color: #28a745; background: rgba(40,167,69,0.1); }
.kre-pos--mid { color: #ffc107; background: rgba(255,193,7,0.1); }
.kre-kd { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.kre-kd--easy   { background: #d4edda; color: #155724; }
.kre-kd--medium { background: #fff3cd; color: #856404; }
.kre-kd--hard   { background: #f8d7da; color: #721c24; }
.kre-table-actions {
    padding: 14px 18px;
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.kre-table-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.kre-table-btn--primary { background: var(--primary-color); color: #fff; }
.kre-table-btn--primary:hover { background: #e04a00; }
.kre-table-btn:not(.kre-table-btn--primary) {
    background: rgba(17,20,81,0.08);
    color: var(--secondary-color);
}
.kre-table-btn:not(.kre-table-btn--primary):hover { background: rgba(17,20,81,0.15); }


/* ============================================================
   SERP CARD (Section 4 visual)
   ============================================================ */
.kre-serp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(8px);
}
.kre-serp-card__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}
.kre-serp-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.kre-serp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.2s;
}
.kre-serp-item--you {
    border-color: rgba(255,85,0,0.3);
    background: rgba(255,85,0,0.07);
}
.kre-serp-rank {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    width: 28px;
    flex-shrink: 0;
    padding-top: 2px;
}
.kre-serp-rank--you { color: var(--primary-color); }
.kre-serp-info { flex: 1; }
.kre-serp-domain {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.kre-serp-bars { display: flex; flex-direction: column; gap: 5px; }
.kre-serp-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}
.kre-serp-bar-row span {
    width: 18px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    font-size: 10px;
}
.kre-serp-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.kre-serp-bar > div { height: 100%; background: rgba(255,255,255,0.3); border-radius: 3px; }
.kre-serp-bar-row em { width: 36px; text-align: right; font-style: normal; color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600; }
.kre-serp-gap {
    background: rgba(255,85,0,0.1);
    border: 1px solid rgba(255,85,0,0.25);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}
.kre-serp-gap strong { color: var(--primary-color); }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.kre-hiw-section {
    padding: 100px 0;
    background: #fff;
}
.kre-hiw-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.kre-hiw-step {
    flex: 1;
    background: #f6f7ff;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}
.kre-hiw-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255,85,0,0.1);
    transform: translateY(-6px);
}
.kre-hiw-step__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,85,0,0.12);
    line-height: 1;
}
.kre-hiw-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,85,0,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.kre-hiw-step:hover .kre-hiw-step__icon {
    background: var(--primary-color);
    color: #fff;
}
.kre-hiw-step h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}
.kre-hiw-step p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    opacity: 1;
}
.kre-hiw-connector {
    width: 40px;
    flex-shrink: 0;
    position: relative;
    align-self: center;
    margin-top: -30px;
}
.kre-hiw-connector::before {
    content: '';
    display: block;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-color) 0, var(--primary-color) 6px, transparent 6px, transparent 12px);
}
.kre-hiw-connector::after {
    content: '›';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
    line-height: 0;
    margin-top: 1px;
}
@media (max-width: 991px) {
    .kre-hiw-grid { flex-direction: column; gap: 20px; }
    .kre-hiw-connector { width: 2px; height: 30px; align-self: center; }
    .kre-hiw-connector::before {
        width: 2px;
        height: 30px;
        background: repeating-linear-gradient(180deg, var(--primary-color) 0, var(--primary-color) 6px, transparent 6px, transparent 12px);
    }
    .kre-hiw-connector::after { content: '⌄'; right: auto; left: 50%; transform: translateX(-50%); top: auto; bottom: -10px; }
}


/* ============================================================
   WHO IS IT FOR
   ============================================================ */
.kre-for-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.kre-for-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.kre-for-card:hover { border-color: rgba(255,85,0,0.2); box-shadow: 0 12px 40px rgba(255,85,0,0.1); transform: translateY(-5px); }
.kre-for-card:hover::before { transform: scaleX(1); }
.kre-for-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,85,0,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.kre-for-card:hover .kre-for-card__icon { background: var(--primary-color); color: #fff; }
.kre-for-card h5 { font-weight: 700; color: var(--secondary-color); margin: 0; font-size: 1rem; }
.kre-for-card p { font-size: 0.875rem; color: #666; line-height: 1.6; margin: 0; opacity: 1; flex: 1; }
.kre-for-card__tag {
    display: inline-block;
    background: rgba(255,85,0,0.08);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}


/* ============================================================
   OTHER EXTENSIONS GRID
   ============================================================ */
.kre-other-tools {
    padding: 100px 0;
    background: var(--secondary-color);
}
.kre-other-tools .kre-section-title { color: #fff; }
.kre-other-tools .kre-section-desc  { color: rgba(255,255,255,0.6); }
.kre-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.kre-tool-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.kre-tool-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,85,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.kre-tool-card--active {
    background: rgba(255,85,0,0.12) !important;
    border-color: rgba(255,85,0,0.4) !important;
}
.kre-tool-card__icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.kre-tool-card:hover .kre-tool-card__icon { transform: scale(1.08); }
.kre-tool-card h6 { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0 0 5px; }
.kre-tool-card p  { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.5; opacity: 1; }
.kre-tool-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}
@media (max-width: 991px) { .kre-tools-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .kre-tools-grid { grid-template-columns: 1fr; } }


/* ============================================================
   FAQ
   ============================================================ */
.kre-faq-section {
    padding: 100px 0;
    background: #f6f7ff;
}
.kre-accordion { border-top: 1px solid rgba(0,0,0,0.08); }
.kre-acc-item  { border-bottom: 1px solid rgba(0,0,0,0.08); }
.kre-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    transition: color 0.2s;
}
.kre-acc-btn:hover { color: var(--primary-color); }
.kre-acc-item.open .kre-acc-btn { color: var(--primary-color); }
.kre-acc-icon {
    width: 30px; height: 30px; min-width: 30px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.kre-acc-item.open .kre-acc-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}
.kre-acc-body {
    display: none;
    padding: 0 0 26px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    max-width: 620px;
    opacity: 1;
}
.kre-acc-item.open .kre-acc-body { display: block; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.kre-cta-final {
    background: var(--secondary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.kre-cta-final__inner {
    position: relative;
    text-align: center;
    z-index: 1;
}
.kre-cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.kre-cta-blob--1 {
    width: 500px; height: 500px;
    background: rgba(255,85,0,0.18);
    top: -200px; right: -100px;
}
.kre-cta-blob--2 {
    width: 350px; height: 350px;
    background: rgba(255,85,0,0.12);
    bottom: -150px; left: -80px;
}
.kre-cta-content { position: relative; z-index: 1; }
.kre-cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 12px 0 20px;
}
.kre-cta-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 36px;
    opacity: 1;
}
.kre-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.kre-cta-meta {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
}
.kre-cta-meta span { opacity: 1; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .kre-section { padding: 70px 0; }
    .kre-hiw-section { padding: 70px 0; }
    .kre-faq-section { padding: 70px 0; }
    .kre-other-tools { padding: 70px 0; }
    .kre-cta-final   { padding: 70px 0; }
    /* .kre-trust-bar   { padding-top: 220px; } */
    .kre-score-row { flex-direction: column; align-items: flex-start; }
    .kre-section-intro { margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .kre-section  { padding: 60px 0; }
    .kre-trust-bar { padding-top: 40px; padding-bottom: 40px; }
    .kre-cta-title { font-size: 1.75rem; }
}