@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');
/* --- MODERN SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #334155; /* var(--border) */
    border-radius: 20px;
    border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--bg);
}

:root {
    --primary: #238636; /* IDE Tech Green */
    --primary-dark: #2ea043;
    --bg: #0D1117; /* Background Deep Space */
    --card: #161B22; /* Surface */
    --text: #C9D1D9; /* Primary Text */
    --muted: #8B949E; /* Muted Text */
    --border: #30363D; /* Border Subtle */
    --accent: #e3b341; /* Golden Accents */
    --accent-light: rgba(227, 179, 65, 0.05);
    --accent-mid: rgba(227, 179, 65, 0.4);
    --radius: 16px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    
    /* Design Engineering Easings */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08), transparent 30vw),
        radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.05), transparent 30vw),
        linear-gradient(135deg, rgba(13, 17, 23, 0.6), rgba(13, 17, 23, 0.9)),
        url('../assets/world-map-bg.png');
    background-size: cover;
    background-position: center -150px;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    font-size: 1rem;
    font-size: clamp(0.95rem, 0.2vw + 0.9rem, 1.05rem);
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.5rem;
    font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-size: clamp(1.75rem, 4vw + 1rem, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 1rem, 1.75rem);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: white;
}

/* --- PREMIUM DARK NAVBAR --- */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.topnav-brand {
    text-decoration: none;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.topnav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topnav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.topnav-links a:hover {
    color: white;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 99px;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta::before,
.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-dark);
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta::before {
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.nav-cta::after {
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.nav-cta:hover::before,
.nav-cta:hover::after {
    transform: scaleX(1);
}

.nav-cta:hover {
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* --- HERO SECTION --- */
header {
    background: radial-gradient(circle at top right, rgba(22, 27, 34, 0.3), transparent);
    padding: 80px 24px 100px;
    text-align: center;
}

.badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 24px;
    display: inline-block;
}

header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

header p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

/* --- CARDS & FORMS --- */
main {
    max-width: 1200px;
    margin: -50px auto 80px;
    padding: 0 20px;
}

.card {
    background: rgba(13, 17, 23, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(35, 134, 54, 0.04) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#calculator, #RESULTS {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card-h {
    margin-bottom: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.num {
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}

/* --- CUSTOM STYLED SELECTS & INPUTS --- */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

select, input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Dropdown list items */
option {
    background-color: var(--bg);
    color: white;
    padding: 12px;
}

optgroup {
    background-color: var(--bg);
    color: var(--primary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    padding: 10px 0;
}

select:focus, input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(35, 134, 54, 0.8);
    box-shadow: 0 0 15px rgba(35, 134, 54, 0.3), inset 0 0 10px rgba(35, 134, 54, 0.1);
}

.btn-calc {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 160ms var(--ease-out), filter 160ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.btn-calc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-calc:hover::before {
    animation: shineSweep 0.6s ease-out;
}

@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-calc:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -6px rgba(35, 134, 54, 0.6);
}

.btn-calc:active {
    transform: scale(0.97) translateY(-2px);
    filter: blur(1px);
}

/* --- RESULTS AREA --- */
.RESULTS-area {
    display: none;
}

.RESULTS-area.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);

    @starting-style {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
}

.result-hero {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.5), rgba(6, 95, 70, 0.2));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 48px 24px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 32px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.result-hero .amount {
    font-size: 56px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--accent);
    margin: 8px 0;
}

/* --- BREAKDOWN GRID --- */
.bkgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.bki {
    background: rgba(13, 17, 23, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    /* Enter Animation */
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInBki 350ms var(--ease-out) forwards;
}

@keyframes fadeInBki {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bki:nth-child(1) { animation-delay: 50ms; }
.bki:nth-child(2) { animation-delay: 100ms; }
.bki:nth-child(3) { animation-delay: 150ms; }
.bki:nth-child(4) { animation-delay: 200ms; }

.bkl {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bkv {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* --- INVISIBLE AD RESERVOIRS --- */
.ad-slot {
    min-height: 100px;
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Invisible until filled */
}

/* --- FOOTER --- */
footer {
    background: rgba(13, 17, 23, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 64px 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer ul { list-style: none; }
footer li { margin-bottom: 12px; }
footer a { color: var(--muted); text-decoration: none; transition: 0.2s; font-size: 14px; }
footer a:hover { color: white; }

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- GUIDES SECTION --- */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

@media (min-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .guides-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.guide-card {
    background: rgba(13, 17, 23, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.guide.btn-calc:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-pdf {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pdf:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* --- MODAL STYLES --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 5px;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    margin: 10px 0;
    font-size: 24px;
}

.btn-skip {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--muted);
    margin-top: 15px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.privacy-note {
    margin-top: 32px;
    padding-top: 8px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    color: #10b981;
    width: 14px;
    height: 14px;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.guide-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s;
}

.guide-card:hover h4 {
    color: var(--primary);
}

.guide-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* --- BLOG & CONTENT STYLES --- */
.formula-block {
    background: rgba(16, 185, 129, 0.05);
    padding: 24px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 15px;
    margin: 24px 0;
    border: 1px solid rgba(16, 185, 129, 0.1);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: auto;
    text-align: center;
    font-weight: 600;
}

.cta-box {
    background: var(--accent-light);
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius);
    margin-top: 48px;
    border: 1px solid var(--accent-mid);
    position: relative;
}

.cta-box h4 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 20px;
}

.cta-box p {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text);
}

.header-desc {
    color: var(--muted);
    max-width: 700px;
    margin: 24px auto 32px;
    font-size: 18px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.4;
}

/* --- FAQ / DETAILS STYLES --- */
.faq-item {
    background: #161B22;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.02);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.faq-item summary::after {
    content: '+';
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* --- MODERN RESPONSIVE ENGINE --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .topnav-links {
        display: none;
        position: fixed; /* Better than absolute for mobile overlay */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        z-index: 999;
    }

    .topnav-links.active {
        display: flex;
    }

    .topnav-links a {
        font-size: 24px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        text-align: center;
    }

    header {
        padding: 80px 20px 60px;
    }

    header p {
        font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
    }

    .card {
        padding: clamp(20px, 5vw, 32px);
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .result-hero .amount {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

@media (hover: hover) {
    .guide-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    }
}

/* --- LEAD GEN STYLES --- */
.lead-gen-box {
    margin-top: 40px;
    padding: 40px !important;
}

.lead-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.lead-icon {
    width: 64px;
    height: 64px;
    background: rgba(35, 134, 54, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.lead-icon svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 640px) {
    .lead-content {
        flex-direction: column;
        gap: 16px;
    }
    
    #lead-form div {
        grid-template-columns: 1fr !important;
    }
}

.spin {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- ARTICLE & GUIDE STYLES --- */
.article-header {
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
}

.article-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: white;
}

.lead {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.6;
}

section {
    margin-bottom: 48px;
}

section h3 {
    margin-bottom: 24px;
    color: var(--primary);
}

section p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

.rich-list {
    margin: 24px 0;
    padding-left: 20px;
}

.rich-list li {
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
    list-style: none;
    padding-left: 10px;
}

.rich-list li::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--primary);
    font-weight: bold;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.case-study {
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--border);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.case-study h4 {
    margin-bottom: 16px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study ul {
    list-style: none;
    margin-top: 16px;
}

.case-study li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text);
}

.case-study strong {
    color: white;
}

.faq-section {
    margin-top: 64px;
    border-top: 1px solid var(--border);
    padding-top: 48px;
}

/* --- RATING DISPLAY --- */
.res-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.stars svg.fill {
    fill: var(--accent);
}

.res-rating span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* --- GLOBAL TRUST BADGE --- */
.global-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 24px 0 32px;
}

.global-trust-badge .stars {
    display: flex;
    gap: 4px;
}

.global-trust-badge .stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.global-trust-badge .stars svg.fill {
    fill: var(--accent);
}

.global-trust-badge span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.global-trust-badge b {
    color: var(--primary);
    font-weight: 700;
}

.privacy-badge svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* --- RELATED TOOLS SILO --- */
.related-tools-silo {
    max-width: 1000px;
    margin: 0 auto 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.silo-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.silo-title svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.silo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.silo-link {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 99px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.silo-link:hover {
    border-color: var(--primary);
    color: white;
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}
