body {
    overflow-y: auto !important;
}

.post-hero {
    padding: 120px 0 54px;
    position: relative;
}

.post-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 22px;
}

.post-header {
    margin-bottom: 36px;
}

.post-category {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    border-radius: 30px;
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-title {
    margin: 0 0 24px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.35rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-primary, #fff);
    background: var(--title-gradient, linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.58));
    font-size: 0.94rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-content {
    color: var(--text-secondary, rgba(255, 255, 255, 0.84));
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.82;
}

.post-content h2,
.post-content h3 {
    color: var(--text-primary, #fff);
    font-family: 'Outfit', sans-serif;
}

.post-content h2 {
    margin: 50px 0 22px;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.post-content h3 {
    margin: 34px 0 15px;
    font-size: 1.45rem;
}

.post-content p {
    margin: 0 0 24px;
}

.post-content a {
    color: #b6a3ff;
    text-underline-offset: 3px;
}

.post-content ul,
.post-content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 12px;
}

.answer-box,
.reality-check,
.source-note,
.consultancy-note {
    margin: 28px 0;
    padding: 22px 24px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 14px;
    background: rgba(167, 139, 250, 0.055);
}

.answer-box strong,
.reality-check strong,
.consultancy-note strong {
    color: var(--text-primary, #fff);
}

.reality-check {
    border-color: rgba(245, 158, 11, 0.24);
    background: rgba(245, 158, 11, 0.055);
}

.consultancy-note {
    border-color: rgba(16, 185, 129, 0.26);
    background: rgba(16, 185, 129, 0.055);
}

.source-note {
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(37, 99, 235, 0.05);
    font-size: 0.96rem;
}

.source-note p:last-child,
.consultancy-note p:last-child,
.answer-box p:last-child,
.reality-check p:last-child {
    margin-bottom: 0;
}

.text-highlight {
    display: inline;
    padding: 0 4px;
    border-radius: 4px;
    background: linear-gradient(120deg, rgba(234, 179, 8, 0.3), rgba(234, 179, 8, 0.3));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-highlight.active {
    background-size: 100% 100%;
}

.table-container,
.table-responsive {
    margin: 30px 0;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
}

table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    font-size: 0.93rem;
}

th,
td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
    background: rgba(37, 99, 235, 0.12);
    color: var(--text-primary, #fff);
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}

tbody tr:first-child {
    border-left: 3px solid #a78bfa;
    background: rgba(167, 139, 250, 0.06);
}

tr:last-child td {
    border-bottom: 0;
}

.blog-inquiry-form {
    position: relative;
    overflow: hidden;
    margin-top: 42px;
    padding: 30px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.09));
    border-radius: 16px;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.035));
}

.blog-inquiry-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #a78bfa, #2563eb, #10b981);
}

.blog-inquiry-form h3 {
    margin: 0 0 6px;
    font-size: 1.45rem;
}

.blog-inquiry-form .form-subtitle {
    margin-bottom: 20px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.65));
    font-size: 0.92rem;
}

.blog-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-form-input {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 10px;
    outline: none;
    background: var(--bg-primary, rgba(0, 0, 0, 0.3));
    color: var(--text-primary, #fff);
    font: inherit;
}

.blog-form-input:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.14);
}

.blog-form-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #fff;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.blog-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.28);
}

.blog-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.blog-form-msg {
    display: none;
    margin-top: 12px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.blog-form-msg.success,
.blog-form-msg.error {
    display: block;
}

.blog-form-msg.success {
    border: 1px solid rgba(16, 185, 129, 0.22);
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.blog-form-msg.error {
    border: 1px solid rgba(239, 68, 68, 0.22);
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.blog-form-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-top: 12px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.52));
    font-size: 0.82rem;
}

.blog-form-guarantee i {
    flex: 0 0 auto;
    color: #10b981;
}

.blog-gallery-cta {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.faq-section {
    margin: 30px 0 44px;
}

.faq-item {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.09));
    border-radius: 12px;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border: 0;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.03));
    color: var(--text-primary, #fff);
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.04rem;
    font-weight: 650;
}

.faq-question i {
    flex: 0 0 auto;
    color: #a78bfa;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 420px;
    padding: 0 20px 18px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .post-hero {
        padding: 96px 0 36px;
    }

    .post-title {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .blog-form-grid {
        grid-template-columns: 1fr;
    }

    .blog-inquiry-form {
        padding: 24px 18px;
    }
}
