/* ===== CSS Variables ===== */
:root {
    --yollow: #fdee18;
    --green: #418181;
    --light-green: #32beb8;
    --gray: #efefef;
    --black: #000;
    --white: #fff;
    --text: #7e7e7e;
    --title: #595959;
    --bg: #f7f7f9;
    --inter: "Inter", sans-serif;
    --poppins: "Poppins", sans-serif;
    --fira: "Fira Sans", sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 70px;
    }
}

body {
    font-family: var(--inter);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fira);
    color: var(--title);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin: 0 0 1rem;
}
h2 {
    font-size: 1.65rem;
    margin: 2.5rem 0 1rem;
}
h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
}
h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

p {
    margin: 0 0 1.15rem;
}

a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--green);
}

/* ===== Navigation ===== */
nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    line-height: 70px;
}

nav .nav-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo svg {
    height: 38px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--fira);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--title);
    letter-spacing: -0.02em;
}

.nav-logo-text span {
    color: var(--light-green);
}

nav .nav-cta {
    background: var(--yollow);
    color: var(--black);
    border-radius: 8px;
    padding: 10px 24px;
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
}

nav .nav-cta:hover {
    background: #e6d816;
    transform: translateY(-1px);
}

nav .nav-cta .material-icons {
    font-size: 18px;
}

/* ===== Container ===== */
.container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Custom LC Grid ===== */
.lc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.lc-row > [class*="lc"] {
    padding: 0 12px;
}

.lc3 {
    width: 25%;
    flex: 0 0 25%;
}
.lc4 {
    width: 33.333%;
    flex: 0 0 33.333%;
}
.lc8 {
    width: 66.666%;
    flex: 0 0 66.666%;
}
.lc9 {
    width: 75%;
    flex: 0 0 75%;
}

@media (max-width: 992px) {
    .lc3, .lc4, .lc8, .lc9 {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* ===== Breadcrumb ===== */
.breadcrumb-wrap {
    padding: 16px 0 8px;
}

.breadcrumb-wrap a,
.breadcrumb-wrap span {
    font-family: var(--poppins);
    font-size: 0.82rem;
    color: var(--text);
}

.breadcrumb-wrap a:hover {
    color: var(--light-green);
}
.breadcrumb-wrap .sep {
    margin: 0 6px;
    opacity: 0.5;
}

.breadcrumb-wrap .current {
    color: var(--title);
    font-weight: 500;
}

/* ===== Hero / Title Area ===== */
.blog-hero {
    background: var(--white);
    padding: 32px 0 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.responsive-h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--title);
}

@media (min-width: 768px) {
    .responsive-h1 {
        font-size: 2.4rem;
    }
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.post-avater {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yollow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fira);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    flex-shrink: 0;
}

.post-by {
    font-family: var(--poppins);
    font-size: 0.88rem;
}

.post-by strong {
    color: var(--title);
    display: block;
}

.post-on {
    font-family: var(--poppins);
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-on .material-icons {
    font-size: 16px;
}

/* ===== Sidebar (Left) ===== */
.sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding-bottom: 30px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin: 0;
}

.sidebar-list li a {
    display: block;
    padding: 8px 14px;
    font-family: var(--poppins);
    font-size: 0.82rem;
    color: var(--text);
    border-left: 3px solid transparent;
    transition: all 0.2s;
    line-height: 1.4;
}

.sidebar-list li a:hover {
    color: var(--title);
    border-left-color: var(--yollow);
    background: rgba(253,238,24,0.06);
}

.sidebar-list li a.active {
    color: var(--title);
    font-weight: 600;
    border-left-color: #fff64c;
    background: rgba(253,238,24,0.08);
}

.sidebar-heading {
    font-family: var(--fira);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--title);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 14px;
    margin: 0 0 8px;
}

/* Author bio in sidebar */
.sidebar-author {
    margin-top: 28px;
    padding: 20px 14px;
    border-top: 1px solid #eee;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yollow), #e6d816);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fira);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 12px;
}

.sidebar-author h4 {
    font-size: 0.95rem;
    margin: 0 0 4px;
    color: var(--title);
}

.sidebar-author p {
    font-size: 0.8rem;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

/* Property quote in sidebar */
.property-quote-wrap {
    margin-top: 20px;
    background: var(--bg);
    border-radius: 12px;
    padding: 16px 14px;
    border-left: 3px solid var(--yollow);
}

.property-quote-info {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--title);
    line-height: 1.5;
    margin: 0;
}

/* ===== Blog Content ===== */
.blog-main-area {
    padding: 32px 0 60px;
}

.blog-content-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px 40px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

@media (max-width: 600px) {
    .blog-content-wrap {
        padding: 20px 16px 28px;
        border-radius: 12px;
    }
}

.blog-content-wrap p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.blog-content-wrap h2 {
    padding-top: 8px;
    border-bottom: 2px solid var(--bg);
    padding-bottom: 12px;
}

.blog-content-wrap ul,
.blog-content-wrap ol {
    padding-left: 0;
    margin: 0 0 1.2rem;
}

.blog-content-wrap ul li,
.blog-content-wrap ol li {
    padding: 4px 0 4px 0;
    font-size: 0.98rem;
    line-height: 1.7;
    list-style-position: inside;
}

.blog-content-wrap ul li {
    list-style: none;
    padding-left: 1.2em;
    text-indent: -1.2em;
}
.blog-content-wrap ul li::before {
    content: "•";
    color: #e6d816;
    font-weight: 700;
    margin-right: 8px;
}

/* Remove bullets from collapsible FAQ list items */
.blog-content-wrap .collapsible li {
    padding-left: 0;
    text-indent: 0;
}
.blog-content-wrap .collapsible li::before {
    display: none;
}

/* Ordered list with counters */
.blog-content-wrap ol {
    counter-reset: step-counter;
    list-style: none;
}

.blog-content-wrap ol li {
    counter-increment: step-counter;
    padding-left: 2em;
    text-indent: 0;
    position: relative;
}

.blog-content-wrap ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    background: var(--yollow);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--poppins);
}

/* ===== Featured Snippet Box ===== */
.featured-snippet {
    background: linear-gradient(135deg, #fefce8, #fffef0);
    border: 1px solid rgba(253,238,24,0.4);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
    position: relative;
}

.featured-snippet::before {
    content: "Our Overview";
    display: inline-block;
    background: var(--yollow);
    color: var(--black);
    font-family: var(--poppins);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.featured-snippet p {
    font-size: 1.02rem !important;
    color: var(--title) !important;
    margin: 0;
    line-height: 1.7;
}

/* ===== Quick Answer Box ===== */
.quick-answer {
    background: var(--white);
    border: 2px solid var(--yollow);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(253,238,24,0.15);
}

.quick-answer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.quick-answer-header .material-icons {
    font-size: 28px;
    color: #e6d816;
}

.quick-answer-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--title);
}

.quick-answer p {
    margin: 0 0 10px;
    color: var(--title) !important;
    font-size: 0.98rem !important;
}

.quick-answer p:last-child {
    margin-bottom: 0;
}

/* ===== Success Rate / Key Takeaway Boxes ===== */
.success-rate {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 28px;
    margin: 28px 0;
    border-top: 13px solid var(--yollow);
    position: relative;
}

.success-rate h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--title);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-rate h4 .material-icons {
    color: var(--green);
    font-size: 22px;
}

.success-rate p {
    margin: 0 0 8px;
    font-size: 0.95rem !important;
}

.success-rate p:last-child {
    margin-bottom: 0;
}

/* ===== What This Means Box ===== */
.seller-meaning {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 28px;
    margin: 28px 0;
    border-top: 13px solid var(--yollow);
}

.seller-meaning h3 {
    font-size: 1.1rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seller-meaning h3 .material-icons {
    color: #f4c542;
    font-size: 24px;
}

/* ===== Star Ratings ===== */
.stars {
    color: #f4c542;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-block;
}

.stars-large {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

/* ===== Review Ratings Table ===== */
.ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

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

.rating-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.rating-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.rating-card .platform {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--title);
    margin-bottom: 8px;
}

.rating-card .score {
    font-family: var(--fira);
    font-size: 2rem;
    font-weight: 800;
    color: var(--title);
    line-height: 1;
    margin-bottom: 6px;
}

.rating-card .review-count {
    font-size: 0.8rem;
    color: var(--text);
}

/* ===== Trustpilot Breakdown Bar ===== */
.tp-breakdown {
    margin: 20px 0 28px;
}

.tp-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.tp-bar-label {
    width: 55px;
    font-family: var(--poppins);
    font-weight: 500;
    color: var(--title);
    flex-shrink: 0;
}

.tp-bar-track {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.tp-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.6s ease;
}

.tp-bar-fill.five {
    background: #00b67a;
}
.tp-bar-fill.four {
    background: #73cf11;
}
.tp-bar-fill.one {
    background: #ff3722;
}

.tp-bar-pct {
    width: 40px;
    font-family: var(--poppins);
    font-weight: 500;
    color: var(--text);
    text-align: right;
    font-size: 0.82rem;
}

/* ===== Comparison Table ===== */
.table-wrap {
    overflow-x: auto;
    margin: 20px 0 28px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 580px;
}

.comparison-table thead th {
    background: var(--yollow);
    color: var(--black);
    font-family: var(--poppins);
    font-weight: 600;
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
    font-size: 0.83rem;
}

.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--title);
    vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg);
}

.comparison-table tbody tr:hover {
    background: rgba(253,238,24,0.06);
}

.comparison-table .highlight-row {
    background: rgba(253,238,24,0.10) !important;
    font-weight: 600;
}

.comparison-table .highlight-row td {
    border-left: 3px solid var(--green);
}

.comparison-table .highlight-row td:first-child {
    color: var(--green);
}

/* ===== Pros & Cons ===== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0 28px;
}

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

.pros-col, .cons-col {
    border-radius: 14px;
    padding: 24px;
}

.pros-col {
    background: linear-gradient(135deg, #eefaf6, #f5fcf9);
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.cons-col {
    background: linear-gradient(135deg, #fef5f5, #fefafa);
    border: 1px solid rgba(244, 67, 54, 0.15);
}

.pros-col h3, .cons-col h3 {
    font-size: 1.05rem;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-col h3 .material-icons {
    color: #4CAF50;
}
.cons-col h3 .material-icons {
    color: #f44336;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.pc-item .material-icons {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pc-item.pro .material-icons {
    color: #4CAF50;
}
.pc-item.con .material-icons {
    color: #f44336;
}

.pc-item span {
    color: var(--title);
}

/* ===== Steps ===== */
.step-block {
    position: relative;
    padding-left: 56px;
    margin-bottom: 28px;
    min-height: 48px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--yollow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(253,238,24,0.4);
}

.step-block::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--yollow), transparent);
}

.step-block:last-child::before {
    display: none;
}

.step-block h4 {
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--title);
    padding-top: 6px;
}

.step-block p {
    margin: 0 0 8px;
    font-size: 0.94rem !important;
}

/* ===== Blockquotes ===== */
.customer-quote {
    border-left: 4px solid var(--yollow);
    padding: 14px 20px;
    margin: 16px 0;
    background: rgba(253,238,24,0.04);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--title);
    font-size: 0.95rem !important;
    line-height: 1.65;
}
.quote-attribution {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: -10px 0 16px 4px;
      font-size: 0.78rem;
      color: #666;
      font-style: normal;
    }

    .quote-attribution .tp-logo {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
      color: #00b67a;
    }

    .quote-attribution .tp-logo svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .quote-attribution .tp-stars {
      color: #00b67a;
      letter-spacing: 1px;
      font-size: 0.82rem;
    }

    .quote-attribution .tp-author {
      color: #444;
      font-weight: 500;
    }

    .quote-attribution .tp-date {
      color: #888;
    }
   
/* ===== Key Facts Table ===== */
.facts-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.92rem;
}

.facts-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--title);
    vertical-align: top;
}

.facts-table td:first-child {
    font-family: var(--poppins);
    font-weight: 600;
    width: 42%;
    color: var(--title);
}

.facts-table tr:nth-child(even) {
    background: var(--bg);
}

/* ===== CTA Blocks ===== */
.cta-block {
    background: linear-gradient(135deg, #f5e800, var(--yollow));
    border-radius: 16px;
    padding: 36px 32px;
    margin: 36px 0;
    text-align: center;
    color: var(--black);
}

.cta-block h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.cta-block p {
    color: rgba(0,0,0,0.7) !important;
    font-size: 1rem !important;
    margin: 0 0 20px;
}

.cta-inline-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.cta-inline-form input {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: var(--inter);
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-inline-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(65,129,129,0.25);
}

.cta-inline-form button,
.cta-inline-form .sp-btn {
    background: var(--green) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    font-family: var(--poppins) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
    line-height: 1.4 !important;
    height: auto !important;
}

.cta-inline-form button:hover,
.cta-inline-form .sp-btn:hover {
    background: #366c6c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
    .cta-inline-form {
        flex-direction: column;
    }
}

/* ===== Right Sidebar: Offer Form ===== */
.offer-sidebar {
    position: sticky;
    top: 90px;
}

.offer-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.offer-form-header {
    background: var(--yollow);
    padding: 20px 24px;
    text-align: center;
}

.offer-form-header h3 {
    font-size: 21px; /*1.1rem;*/
    margin: 0 0 4px;
    color: var(--black);
}

.offer-form-header p {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.7);
    margin: 0;
    font-family: var(--poppins);
}

.offer-form-content {
    padding: 24px;
}

.offer-form-content .input-field {
    margin: 0 0 14px;
}

.offer-form-content input[type="text"],
.offer-form-content input[type="email"],
.offer-form-content input[type="tel"] {
    background: var(--white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    height: auto !important;
    font-family: var(--inter) !important;
    font-size: 0.9rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100%;
    transition: border-color 0.2s;
}

.offer-form-content input:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 2px rgba(65,129,129,0.25) !important;
}

.offer-form-content label {
    font-family: var(--poppins);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--title);
    display: block;
    margin-bottom: 6px;
}

.offer-form-content .btn-offer,
.offer-form-content .step-form-wrapper .btn-offer {
    width: 100% !important;
    background: var(--green) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px !important;
    color: var(--white) !important;
    font-family: var(--poppins) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 6px;
    display: block !important;
    text-align: center !important;
    line-height: 1.4 !important;
    height: auto !important;
}

.offer-form-content .btn-offer:hover,
.offer-form-content .step-form-wrapper .btn-offer:hover {
    background: #366c6c !important;
    transform: translateY(-1px);
}

.offer-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--text);
}

.offer-form-trust .material-icons {
    font-size: 16px;
    color: var(--green);
}

/* ===== FAQ Accordion ===== */
.collapsible {
    border: none !important;
    box-shadow: none !important;
    margin: 20px 0;
}

.collapsible li {
    margin-bottom: 8px;
}

.collapsible-header {
    background: var(--white) !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-family: var(--fira);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--title);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, box-shadow 0.2s;
    min-height: 0;
}

.collapsible-header:hover {
    background: var(--bg) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.collapsible-header .material-icons {
    color: #e6d816;
    transition: transform 0.3s;
}

.collapsible li.active .collapsible-header {
    border-color: var(--yollow) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.collapsible li.active .collapsible-header .material-icons {
    transform: rotate(180deg);
}

.collapsible-body {
    padding: 20px 24px !important;
    border: 1px solid var(--yollow) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    background: var(--white);
}

.collapsible-body p {
    margin: 0;
    font-size: 0.94rem !important;
    line-height: 1.7;
}


/* ===== Inline icon helpers ===== */
.icon-check {
    color: #4CAF50;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 4px;
}
.icon-cross {
    color: #f44336;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 4px;
}

/* ===== Section dividers ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 36px 0;
}

/* ===== Footer ===== */
.site-footer {
    background: #1a1a1a;
    color: #000000;
    padding: 40px 0 24px;
    margin-top: 60px;
}

.site-footer a {
    color: #000000;
}
.site-footer a:hover {
    color: var(--yollow);
}

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

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

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

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 12px 0 0;
}

.footer-col h4 {
    font-family: var(--poppins);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin: 0 0 6px;
}

.footer-col ul li a {
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== Responsive helpers ===== */
.hide-on-mobile {
    display: block;
}
.show-on-mobile {
    display: none;
}

@media (max-width: 992px) {
    .hide-on-mobile {
        display: none;
    }
    .show-on-mobile {
        display: block;
    }

    .blog-content-wrap {
        margin-bottom: 24px;
    }

    .responsive-h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .responsive-h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.35rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    .cta-block {
        padding: 28px 20px;
    }
    .cta-block h3 {
        font-size: 1.2rem;
    }

    nav {
        height: 56px;
        line-height: 56px;
    }
    nav .nav-wrapper {
        padding: 0 12px;
    }
    .nav-logo svg {
        height: 28px;
    }
    .nav-logo-text {
        font-size: 0.9rem;
    }
    nav .nav-cta {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
    nav .nav-cta .material-icons {
        font-size: 15px;
    }
}

/* ===== Update badge ===== */
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fefce8;
    color: #9a8c00;
    font-family: var(--poppins);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.updated-badge .material-icons {
    font-size: 14px;
}

/* ===== Fee table checkmarks ===== */
.fee-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0 20px !important;
}

.fee-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    text-indent: 0 !important;
    padding-left: 0 !important;
}

.fee-list li::before {
    display: none !important;
}

.fee-list li .material-icons {
    flex-shrink: 0;
}

/* ===== Example box ===== */
.example-box {
    background: var(--bg);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0 24px;
    border-left: 4px solid var(--yollow);
}

.example-box strong {
    display: block;
    font-family: var(--poppins);
    font-size: 0.85rem;
    color: var(--title);
    margin-bottom: 8px;
}

/* ===== Mobile TOC toggle ===== */
.mobile-toc-toggle {
    display: none;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--title);
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-toc-toggle .material-icons {
    float: right;
    transition: transform 0.3s;
}

.mobile-toc-toggle.open .material-icons {
    transform: rotate(180deg);
}

.mobile-toc-content {
    display: none;
    background: var(--white);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
}

.mobile-toc-content.open {
    display: block;
}

@media (max-width: 992px) {
    .mobile-toc-toggle {
        display: block;
    }
}

/* ===== Springbok link cards ===== */
.springbok-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0 28px;
}

@media (max-width: 600px) {
    .springbok-links {
        grid-template-columns: 1fr;
    }
}

.sb-link-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}

.sb-link-card:hover {
    border-color: var(--yollow);
    box-shadow: 0 4px 12px rgba(253,238,24,0.2);
}

.sb-link-card .material-icons {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 8px;
}

.sb-link-card strong {
    display: block;
    font-family: var(--fira);
    font-size: 0.92rem;
    color: var(--title);
    margin-bottom: 4px;
}

.sb-link-card span {
    font-size: 0.8rem;
    color: var(--text);
}

/* ===== Verdict Box ===== */
.verdict-box {
    background: linear-gradient(135deg, #fffef5, #fefce8);
    border: 2px solid var(--yollow);
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
}

.verdict-box h3 {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verdict-box h3 .material-icons {
    color: var(--green);
}

.verdict-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

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

.verdict-col h4 {
    font-size: 0.92rem;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verdict-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verdict-col ul li {
    font-size: 0.9rem;
    padding: 4px 0;
    color: var(--title);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.verdict-col ul li .material-icons {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 15px;
}

/* ===== Multi-Step Form ===== */
.step-form-wrapper {
    width: 100%;
}

.step-form-wrapper .form-step {
    display: none;
    animation: fadeSlideIn 0.3s ease;
}

.step-form-wrapper .form-step.active {
    display: block;
}

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

.step-form-wrapper .step-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.step-form-wrapper .step-progress .step-dot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(0,0,0,0.12);
    transition: background 0.3s;
}

.step-form-wrapper .step-progress .step-dot.filled {
    background: var(--green);
}

.step-form-wrapper .step-label {
    font-family: var(--poppins);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.step-form-wrapper .step-label .material-icons {
    font-size: 14px;
}

/* CTA inline multi-step adjustments */
.cta-block .step-form-wrapper {
    max-width: 440px;
    margin: 0 auto;
}

.cta-block .step-form-wrapper .form-step {
    display: none;
}

.cta-block .step-form-wrapper .form-step.active {
    display: flex;
    gap: 10px;
}

.cta-block .step-form-wrapper .form-step input {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: var(--inter);
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-block .step-form-wrapper .form-step input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(65,129,129,0.25);
}

.cta-block .step-form-wrapper .form-step button {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-block .step-form-wrapper .form-step button:hover {
    background: #366c6c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-block .step-form-wrapper .step-progress {
    max-width: 440px;
    margin: 0 auto 12px;
}

.cta-block .step-form-wrapper .step-label {
    text-align: center;
    justify-content: center;
    color: var(--green);
}

/* Sidebar offer form multi-step adjustments */
.offer-form-content .step-form-wrapper .step-progress {
    margin-bottom: 14px;
}

.offer-form-content .step-form-wrapper .form-step {
    display: none;
}

.offer-form-content .step-form-wrapper .form-step.active {
    display: block;
}

.offer-form-content .step-form-wrapper .input-field {
    margin: 0 0 14px;
}

.offer-form-content .step-form-wrapper label {
    font-family: var(--poppins);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--title);
    display: block;
    margin-bottom: 6px;
}

.offer-form-content .step-form-wrapper input[type="text"],
.offer-form-content .step-form-wrapper input[type="email"],
.offer-form-content .step-form-wrapper input[type="tel"] {
    background: var(--white) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    height: auto !important;
    font-family: var(--inter) !important;
    font-size: 0.9rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100%;
    transition: border-color 0.2s;
}

.offer-form-content .step-form-wrapper input:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 2px rgba(65,129,129,0.25) !important;
}

/* btn-offer styles handled by main rule above with !important */

.step-form-wrapper .back-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: var(--poppins);
    font-size: 0.75rem;
    color: var(--green);
    cursor: pointer;
    margin-bottom: 14px;
    border: none;
    background: none;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.step-form-wrapper .back-link:hover {
    color: #366c6c;
}

.step-form-wrapper .back-link .material-icons {
    font-size: 14px;
}

.cta-block .step-form-wrapper .back-link {
    color: var(--green);
    text-align: center;
    justify-content: center;
    display: flex;
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .cta-block .step-form-wrapper .form-step.active {
        flex-direction: column;
    }
}

.mbt-30{
    margin-top: 30px; 
    margin-bottom:30px; 
}

.blog-content-wrap ul.noBullet li::before {
    content: none;
    margin-right: 8px;
}