/* Global Styles */
:root {
    --primary-color: #635BFF;
    --dark-bg: #0D062D;
    --text-muted: #425466;
    --bg-light: #F5F6FA;
    --white: #FFFFFF;
    --text-dark: #1C1E33;
}

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

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cal Sans', sans-serif;
    font-weight: normal;
    margin: 0;
}

h1,
.h1 {
    font-size: 62px;
    line-height: 1.2;
}

.container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow,
.container--narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* Background Classes */
.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-purple {
    background-color: var(--primary-color);
}

.bg-dark {
    background-color: var(--dark-bg);
}

/* --- Card Grid Section --- */
.cardgrid-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.cardgrid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cardgrid-card {
    background: #F7F8FB;
    border: 1.5px solid #EAECF4;
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cardgrid-card:hover {
    border-color: rgba(99,91,255,0.35);
    box-shadow: 0 4px 20px rgba(99,91,255,0.07);
}

.cardgrid-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cardgrid-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99,91,255,0.08);
    border: 1.5px solid rgba(99,91,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.cardgrid-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
}

.cardgrid-card p {
    font-size: 15px;
    line-height: 24px;
    color: var(--text-muted);
    margin: 0;
}

.cardgrid-cta {
    margin-top: 40px;
    text-align: center;
}

/* intent: pain — red icons */
.cardgrid--pain .cardgrid-card-icon {
    background: rgba(248,113,113,0.08);
    border-color: rgba(248,113,113,0.15);
    color: #f87171;
}

/* intent: solution — purple icons (same as default, explicit for clarity) */
.cardgrid--solution .cardgrid-card-icon {
    background: rgba(99,91,255,0.08);
    border-color: rgba(99,91,255,0.12);
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .cardgrid-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .cardgrid-cards { grid-template-columns: 1fr; }
}

/* --- Section Label / Eyebrow --- */
.section-label,
.lp-label-dark-text {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 16px;
}

/* --- Section Header Logic --- */
.section-title {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-title.large {
    max-width: 900px;
}

.section-title h2 {
    font-size: 48px;
    line-height: 58px;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Allow .h1 class on h2 to override font size */
.section-title h2.h1 {
    font-size: 62px;
    line-height: 72px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 28px;
    margin-top: 24px;
}

.what-suqo-does .flex-content {
    max-width: 501px;
}

.what-suqo-does .flex-image {
    max-width: 608px;
}

.what-suqo-does .section-title .second-p {
    margin-top: 32px;
}

/* Specific Section Alignments (Targeted Centering) */
.features-section .section-title,
.business-section .section-title,
.impact-section .section-title,
.faq-section .section-title,
.cta-section .section-title,
.pricing-header-mobile .section-title,
.cardgrid-section .section-title,
.hiw-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    padding: 90px 0;
}

.cta-section p {
    font-size: 24px;
    line-height: 32px;
    max-width: 592px;
    margin: auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    min-width: 1472px;
    height: 200%;
    width: 100%;
    background: radial-gradient(45.63% 45.63% at 50% 50%, rgba(99, 91, 255, 0.3) 0%, rgba(31, 24, 90, 0.3) 60.1%, rgba(13, 6, 45, 0.3) 90.38%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 span {
    color: var(--primary-color);
}

.cta-section .btn {
    display: block;
    margin: 48px auto 0;
    width: fit-content;
}

.card-actions .btn {
    padding: 16px 40px;
}

/* Dark theme headers */
.bg-dark .section-title h2,
.bg-dark .section-title p {
    color: var(--white);
}

.bg-purple .section-title h2,
.bg-purple .section-title p {
    color: var(--white);
}

/* --- Header Component --- */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header--sticky {
    position: fixed;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header--sticky .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
}

.header .container {
    max-width: 1280px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header .logo img {
    width: 110px;
    height: 30px;
}

.header-inner .auth-nav-wrapper .btn {
    padding: 14px 24px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .header-left {
        gap: 0;
    }

    .header .logo img {
        width: 200px;
        height: 55px;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Drawer */
.nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100vh;
    background-color: var(--dark-bg);
    padding: 16px;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.nav-menu.is-open {
    transform: translateX(0);
}

.menu-close-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-links-wrapper {
    display: flex;
    flex-direction: column;
}

.auth-nav-wrapper {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Desktop Menu Overrides */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        transform: translateX(0);
        overflow: visible;
        align-items: center;
        transition: none;
    }

    .menu-close-wrapper,
    .menu-toggle {
        display: none;
    }

    .nav-links-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .auth-nav-wrapper {
        margin: 0;
        padding: 0;
        border: none;
        flex-direction: row;
        align-items: center;
    }
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.md-hidden {
    display: block;
}

@media (min-width: 768px) {
    .md-hidden {
        display: none;
    }
}

.btn {
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;

}

.btn-login {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    background-color: transparent;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .header-inner .btn-login {
        border: none;
        color: var(--white);
        position: relative;
    }

    .header-inner .btn-login:hover {
        background-color: transparent;
        border-color: transparent;
        opacity: 0.7;
    }

    .header-inner .btn-login::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
        width: 1.5px;
        background-color: rgba(255, 255, 255, 0.5);
    }
}

/* --- Hero Section --- */
.hero {
    padding: 184px 0 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark-bg) 94%, var(--bg-light) 94%);
    position: relative;
    overflow: hidden;
}

.hero-glow-top {
    position: absolute;
    top: -210px;
    right: -250px;
    width: 1072px;
    height: 450px;
    background: radial-gradient(45.63% 45.63% at 50% 50%, rgba(99, 91, 255, 0.3) 0%, rgba(31, 24, 90, 0.3) 60.1%, rgba(13, 6, 45, 0.3) 90.38%);
    z-index: 0;
}

.hero-glow-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(45.63% 45.63% at 50% 50%, rgba(99, 91, 255, 0.3) 0%, rgba(31, 24, 90, 0.3) 60.1%, rgba(13, 6, 45, 0.3) 90.38%);
    z-index: 0;
}

.hero-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-curve-mobile {
    display: block;
    width: 100%;
}

.hero-curve-desktop {
    display: none;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-curve-mobile {
        display: none;
    }

    .hero-curve-desktop {
        display: block;
    }
}

.hero-content {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--white);
    font-size: 22px;
    line-height: 32px;
    margin: 0 auto 40px;
    max-width: 584px;
    opacity: 0.9;
}

.trusted-by {
    margin-top: 60px;
    color: var(--white);
}

.trusted-by p {
    margin-bottom: 12px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .trusted-by {
        margin-top: 112px;
    }
}

.hero-image-wrapper {
    margin-top: 64px;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 1579px;
    min-width: 715px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* --- Generic Section Spacing --- */
section {
    padding: 120px 0;
}

section.bg-light+section.bg-light,
section.bg-white+section.bg-white,
section.bg-dark+section.bg-dark {
    padding-top: 0;
}

/* --- Two Column Layout --- */
.flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.flex-layout.reverse {
    flex-direction: row-reverse;
}

.flex-content {
    flex: 1;
    max-width: 500px;
}

.flex-image {
    flex: 1;
    max-width: 608px;
}

/* --- Check Lists --- */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 19px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.check-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 26px;
    height: 26px;
    background: url('../images/check-cricle.e3b51ca9.svg') no-repeat center;
    background-size: contain;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.feature-icon-list {
    list-style: none;
    padding: 0;
}

.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-item:last-child {
    border-bottom: none;
}

.feature-icon-item h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: var(--white);
}

/* --- Business Grid --- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.business-card {
    background-color: var(--white);
    padding: 48px 16px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.business-card img {
    margin-bottom: 8px;
}

.business-card h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #0D062D;
}

.business-card.join-card {
    background: url('../images/business-bg.595abcc6.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    border: none;
}

.join-card h4 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--white);
}

/* --- Pricing Revamp --- */
.pricing-flex {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.pricing-info-column {
    flex: 1;
    max-width: 608px;
}

.pricing-card-column {
    flex: 1;
    max-width: 608px;
}

.pricing-steps-new {
    margin-top: 32px;
}

.step-new {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.step-new::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: -40px;
    width: 3px;
    background-color: #DDE1E6;
}

.step-new.last::before {
    display: none;
}

.step-new.last {
    margin-bottom: 0;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: #DDE1E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: var(--text-muted);
    z-index: 1;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #425466;
}

.step-text p {
    font-size: 18px;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.method-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
}

.radio-container {
    position: relative;
    width: 20px;
    height: 20px;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
}

.radio-container input:checked~.radio-checkmark {
    border-color: var(--primary-color);
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.radio-container input:checked~.radio-checkmark:after {
    display: block;
}

.pricing-features-bottom {
    border-top: 1px solid #D0D0D0;
    padding-top: 24px;
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-muted);
    white-space: nowrap;
}

.pricing-card-new {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.card-label {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

@media (min-width: 1280px) {
    .card-label {
        font-size: 18px;
        line-height: 1.66;
        /* 30px / 18px approx */
    }
}

.fee-display {
    background-color: #DCDBFF;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 32px;
}

.fee-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-bg);
}

.fee-sub {
    font-size: 18px;
    color: var(--text-muted);
    padding-bottom: 4px;
}

.card-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.card-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-dark);
}

.example-content {
    background-color: var(--white);
    border: 2px dashed #D0D0D0;
    padding: 24px;
    border-radius: 4px;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #425466;
}

.example-total {
    border-top: 1px solid #AFAFAF;
    margin-top: 16px;
    padding-top: 12px;
    color: #425466;
}

.card-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.full-width-btn {
    width: 100%;
    text-align: center;
}

.link-btn {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--primary-color);
}

/* --- Impact Gallery --- */
.impact-grid {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.impact-card {
    position: relative;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: flex 0.7s ease-in-out;
    cursor: pointer;
    color: var(--white);
}

.impact-card.is-active {
    flex: 3;
    background-color: var(--white);
    color: var(--dark-bg);
}

.impact-card img.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s;
}

.impact-card.is-active img.bg-image {
    opacity: 0;
}

.impact-card-body {
    position: relative;
    z-index: 1;
    width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-stat h2 {
    font-size: 48px;
    line-height: 58px;
    color: var(--white);
}

.impact-card.is-active .impact-stat h2 {
    color: var(--primary-color);
}

.impact-stat .icon-purple {
    display: none;
}

.impact-card.is-active .icon-white {
    display: none;
}

.impact-card.is-active .icon-purple {
    display: block;
}

.rotate-180 {
    transform: rotate(180deg);
}

.impact-quote {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 24px 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.impact-card.is-active .impact-quote {
    opacity: 1;
    height: auto;
}

.impact-author {
    font-size: 20px;
    font-weight: bold;
    margin-top: auto;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.impact-card.is-active .impact-author {
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-wrapper {
    max-width: 663px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.faq-item {
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 28px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: var(--text-dark);
}

.faq-item.is-active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.is-active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s;
    opacity: 0;
}

.faq-item.is-active .faq-answer-wrapper {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-answer-content {
    overflow: hidden;
    text-align: left;
}

.faq-answer-content p {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 28px;
    color: var(--text-muted);
}

/* --- Floating Popup --- */
.suqo-fit-popup {
    position: fixed;
    bottom: 0;
    left: 20px;
    right: auto;
    z-index: 80;
    transform: translateY(200%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.suqo-fit-popup.is-visible {
    transform: translateY(0);
}

.popup-content {
    background-color: var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    border: 1px solid #E5E7EB;
    border-bottom: none;
}

.popup-link {
    font-size: 14px;
    font-weight: 700;
    color: #0d062d;
    text-align: center;
    transition: color 0.2s;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.popup-link:hover {
    color: #374151;
}

@media (min-width: 768px) {
    .popup-link {
        text-align: left;
    }
}

.popup-close-btn {
    position: absolute;
    top: -12px;
    right: -16px;
    width: 19px;
    height: 19px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    color: var(--primary-color);
    transition: all 0.2s;
}

.popup-close-btn:hover {
    background-color: #F9FAFB;
}

/* --- Main Modal --- */
.suqo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.suqo-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.suqo-modal-content {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 480px;
    height: 440px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transform: translateY(100vh);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.suqo-modal-overlay.is-open .suqo-modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.modal-close-btn:hover {
    color: #374151;
}

.modal-body {
    text-align: center;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.modal-body h2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    padding: 10px;
    font-family: 'Cal Sans', sans-serif;
}

.text-dark {
    color: #111827;
}

.text-primary {
    color: var(--primary-color);
}

.modal-body p {
    font-size: 16px;
    font-weight: 500;
    color: #0d062d;
    margin: 0;
    line-height: 1.5;
    padding: 10px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.modal-btn-primary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-align: center;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 1;
}

.modal-btn-secondary {
    background: none;
    border: none;
    color: #111827;
    margin: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.025em;
    cursor: pointer;
    padding: 10px;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: inherit;
}

.modal-btn-secondary:hover {
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .modal-body h2 {
        font-size: 48px;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    position: relative;
    border-top: 1px solid #374151;
    padding: 0;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    left: 50%;
    top: 25%;
    z-index: 0;
    transform: translate(-50%, -50%);
    min-width: 1472px;
    height: 200%;
    width: 100%;
    background: radial-gradient(45.63% 45.63%, rgba(99, 91, 255, .3) 0%, rgba(31, 24, 90, .3) 60.1%, rgba(13, 6, 45, .3) 90.38%);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    text-align: center;
    padding: 28px 16px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright-section {
    border-top: 1px solid #374151;
}

.footer-copyright-content {
    padding: 28px 16px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright-content p {
    color: var(--bg-light);
    text-align: center;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1279px) {
    .impact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-card {
        flex: none;
        height: auto;
        padding: 36px 28px;
        background-color: var(--white);
        color: var(--dark-bg);
        border: 1px solid #DDE1E6;
    }
    .impact-card img.bg-image {
        display: none;
    }
    .impact-card-body {
        width: 100%;
    }
    .impact-quote {
        opacity: 1;
        height: auto;
        font-size: 32px;
        line-height: 40px;
        font-weight: normal;
        margin: 0;
    }
    .impact-stat h2 {
        color: var(--primary-color) !important;
    }

    .impact-title {
        font-size: 18px;
        line-height: 30px;
        font-weight: 700;
        color: #425466;
        margin-bottom: 48px;
    }
    .impact-stat .icon-white {
        display: none !important;
    }
    .impact-stat .icon-purple {
        display: block !important;
    }
    .impact-author {
        color: var(--text-muted) !important;
        margin-top: 36px;
    }
}

@media (max-width: 1024px) {

    h1,
    .h1 {
        font-size: 42px;
    }

    section {
        padding: 72px 0;
    }

    .section-title h2 {
        font-size: 48px;
        line-height: 58px;
    }

    .flex-layout,
    .features-grid {
        flex-direction: column;
        text-align: left;
        gap: 60px;
    }

    .pricing-flex {
        flex-direction: row;
        gap: 32px;
    }

    .features-grid {
        display: flex;
    }

    .flex-content,
    .pricing-info-column,
    .pricing-card-column {
        max-width: 100%;
        text-align: left;
    }

    .pricing-header-mobile {
        display: block;
        margin-top: 32px;
    }

    .pricing-header-mobile .section-title {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .pricing-header-desktop .section-title h2 {
        font-size: 36px;
        line-height: 100%;
    }

    .pricing-header-desktop .section-title p {
        margin-top: 20px;
    }
}

@media(max-width: 992px){
        .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .section-title h2.h1 {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {

    .h1 {
        font-size: 36px;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: 62px;
        line-height: 72px;
    }

    .hero-subtitle {
        margin-bottom: 28px;
        font-size: 18px;
        line-height: 28px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .step-text h3 {
        font-size: 20px;
    }

    .flex-layout.reverse {
        flex-direction: column;
    }

    .why-suqo .btn {
        display: block;
        width: fit-content;
    }

    .check-list {
        padding-left: 8px;
    }

    .check-item {
        padding-left: 28px;
        margin-bottom: 21px;
    }

    .check-item::before {
        width: 20px;
        height: 20px;
    }

    .pricing-card-new {
        padding: 24px 20px;
    }

    .pricing-features-bottom span {
        font-size: 18px;
    }

    .feature-tag {
        font-size: 14px;
    }

    .card-feature-list li {
        font-size: 16px;
    }

    .card-feature-list li img {
        width: 24px;
        height: 24px;
    }

    /* Reorder Pricing Section for Mobile */
    .pricing-flex {
        flex-direction: column;
        gap: 56px;
        max-width: 608px;
        margin: 0 auto;
        width: 100%;
    }

    .pricing-info-column {
        display: contents;
    }

    .pricing-header-desktop {
        order: 1;
        text-align: center;
    }

    .pricing-header-desktop .section-title {
        margin-bottom: 0;
    }

    .pricing-card-column {
        order: 2;
    }

    .pricing-steps-new {
        order: 3;
        margin-top: 16px;
        margin-bottom: -4px;
    }

    .pricing-features-bottom {
        order: 4;
        gap: 16px;
    }

    .features-grid {
        gap: 40px;
        margin-top: 40px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }

    .business-card img {
        width: 48px;
    }

    .business-card h5 {
        font-size: 16px;
        line-height: 24px;
        font-weight: bold;
    }

    .join-card h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .fee-display {
        flex-direction: row;
        align-items: flex-end;
        gap: 8px;
        padding: 16px 8px;
    }

    .fee-amount {
        font-size: 36px;
    }

    .fee-sub {
        font-size: 14px;
        padding-bottom: 2px;
    }

    .step-new {
        gap: 16px;
    }

    .step-num {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-new::before {
        left: 23px;
        top: 48px;
    }

    .faq-wrapper {
        padding: 0 24px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer-content p {
        font-size: 18px;
        line-height: 30px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-title h2{
        font-size: 32px;
        line-height: 42px;
    }

    .suqo-fit-popup {
        bottom: 0;
        right: 20px;
        left: 20px;
    }

    .popup-content {
        max-width: 100%;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .impact-stat {
        gap: 8px;
        margin-bottom: 8px;
    }

    .impact-stat h2 {
        font-size: 36px;
    }

    .impact-quote {
        font-size: 24px;
        line-height: 32px;
    }

    .impact-card {
        padding: 36px 28px;
    }

        .business-card {
        padding: 20px 12px;
    }

    .faq-item {
        margin-bottom: 16px;
    }
}

@media (max-width: 425px) {
    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }

    .why-suqo .section-title {
        text-align: left;
    }

    .section-title {
        text-align: center;
    }

        .what-suqo-does .btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .auth-nav-wrapper {
        margin-top: 40px;
        padding-top: 16px;
        gap: 16px;
    }

    .cta-section {
        padding: 72px 0 20px 0;
    }

    .cta-section p {
        font-size: 20px;
        line-height: 28px;
    }

    .card-actions .btn {
        padding: 16px 20px;
    }

    .faq-wrapper {
        padding: 0;
    }

    .pricing-features-bottom {
        margin-top: 0;
        padding-top: 12px;
        flex-direction: column;
        align-items: center;
    }
}
/* ─── Footer — expanded layout ────────────────────────────────────── */

.footer-main {
    padding: 56px 16px 48px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    flex-shrink: 0;
    max-width: 220px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
}

.footer-brand .footer-social {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-cols {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-family: 'Inter Tight', sans-serif;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    padding: 24px 16px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--white);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding: 48px 16px 40px;
    }
    .footer-cols {
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ─── Targeted fixes ──────────────────────────────────────────────── */

/* Fix 1: Mobile nav — gap between links */
.nav-links-wrapper {
    gap: 8px;
}

/* Fix 2: Mobile auth buttons — gap between Log In and Sign Up */
.auth-nav-wrapper {
    gap: 12px;
}

/* Fix 3: Desktop — breathing room between nav links and | separator */
@media (min-width: 768px) {
    .auth-nav-wrapper {
        margin-left: 24px;
    }
}

/* Fix 4: Pricing steps — last step needs margin before the separator line */
.step-new.last {
    margin-bottom: 40px !important;
}

/* ─── Nav & mobile menu spacing refinements ──────────────────────── */

/* Mobile: more gap between nav links + padding on each link */
.nav-links-wrapper {
    gap: 4px;
}

.nav-links-wrapper .nav-link {
    padding: 10px 8px;
}

/* Desktop: proper horizontal gap between How it works / Pricing */
@media (min-width: 768px) {
    .nav-links-wrapper {
        gap: 32px;
    }

    .nav-links-wrapper .nav-link {
        padding: 0;
    }
}

/* Mobile: more breathing room inside the menu drawer */
.nav-menu {
    padding: 24px 24px 32px;
}

.menu-close-wrapper {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Mobile auth buttons: increase gap */
.auth-nav-wrapper {
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
}

/* ─── Fix: scope mobile overrides correctly ──────────────────────── */

/* Reset desktop overrides that leaked from previous mobile rules */
@media (min-width: 768px) {
    .nav-menu {
        padding: 0;
    }

    .menu-close-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .auth-nav-wrapper {
        margin-top: 0;
        padding-top: 0;
    }

    .nav-links-wrapper .nav-link {
        padding: 0;
    }
}

/* Mobile-only: proper scoped rules */
@media (max-width: 767px) {
    .nav-menu {
        padding: 24px 24px 32px;
    }

    .menu-close-wrapper {
        margin-bottom: 32px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .auth-nav-wrapper {
        margin-top: 40px;
        padding-top: 40px;
        gap: 16px;
    }

    .nav-links-wrapper .nav-link {
        padding: 10px 8px;
    }
}

/* ─── Legal pages: hero spacing fix ─────────────────────────────── */

/* Push content below the fixed header, tighten badge-to-title gap */
.legal-hero {
    padding: 120px 0 48px;
}

.legal-badge {
    margin-bottom: 16px;
}

/* ─── Legal hero: force padding below fixed header ───────────────── */
.legal-hero {
    padding: 120px 16px 48px !important;
}

/* ─── Blog code block ───────────────────────────────────────────── */
.blog-code-block {
    background: #0f1117;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 20px 0;
    overflow-x: auto;
}

.blog-code-block code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 24px;
    color: rgba(255,255,255,0.82);
    background: none;
    padding: 0;
    white-space: pre;
}

/* ─── Comparison table ───────────────────────────────────────────── */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table th {
    background: var(--bg-dark, #0f1117);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 11px 16px;
    border-bottom: 1px solid #f0f0f4;
    color: var(--text-dark);
    font-size: 14px;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f8fc;
}

.comp-yes {
    color: #059669;
    font-weight: 600;
}

.comp-no {
    color: #dc2626;
    font-weight: 600;
}

.comp-partial {
    color: #b45309;
    font-size: 13px !important;
}

/* ─── Blog hero: clear fixed header ─────────────────────────────── */
.blog-hero {
    padding-top: 120px !important;
}

/* ─── Blog CTA box: fix button text overridden by .blog-body a ──── */
.blog-cta-box .btn,
.blog-cta-box .btn:hover {
    color: var(--white) !important;
    text-decoration: none !important;
    opacity: 1;
}

/* ── Pricing Section v2 (Figma: 7057-1722 / 7087-1920) ─────────── */

.pricing-section-v2 {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-v2-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left column */
.pricing-v2-left {
    flex: 0 0 440px;
    max-width: 440px;
}

.pricing-v2-eyebrow {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-family: 'Inter Tight', sans-serif;
}

.pricing-v2-left h2 {
    font-size: 48px;
    line-height: 58px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-v2-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-muted);
}

/* Right column */
.pricing-v2-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.pricing-v2-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 20px 24px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-v2-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(99,91,255,0.07);
}

.pricing-v2-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}

.pricing-v2-card-icon svg {
    width: 52px;
    height: 52px;
}

.pricing-v2-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.pricing-v2-card-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter Tight', sans-serif;
}

.pricing-v2-card-title {
    font-size: 22px;
    line-height: 30px;
    color: var(--text-dark);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin: 0;
}

.pricing-v2-card-light {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-v2-card-text {
    font-size: 17px;
    line-height: 28px;
    color: var(--text-muted);
    margin: 0;
}

.pricing-v2-card-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Checklist */
.pricing-v2-checklist {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-v2-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 28px;
    color: var(--text-muted);
}

.pricing-v2-checklist li svg {
    flex-shrink: 0;
}

/* CTA */
.pricing-v2-cta {
    width: 100%;
    text-align: center;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    display: block;
}

/* Reassurance bar */
.pricing-v2-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pricing-v2-reassurance span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Inter Tight', sans-serif;
}

.pricing-v2-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .pricing-v2-layout {
        gap: 48px;
    }
    .pricing-v2-left {
        flex: 0 0 340px;
        max-width: 340px;
    }
    .pricing-v2-left h2 {
        font-size: 38px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .pricing-section-v2 {
        padding: 48px 0;
    }
    .pricing-v2-layout {
        flex-direction: column;
        gap: 24px;
    }
    .pricing-v2-left {
        flex: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .pricing-v2-eyebrow {
        display: block;
        text-align: center;
    }
    .pricing-v2-left h2 {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
    }
    .pricing-v2-subtitle {
        font-size: 17px;
        text-align: center;
    }
    .pricing-v2-card-icon {
        width: 40px;
        height: 40px;
    }
    .pricing-v2-card-icon svg {
        width: 40px;
        height: 40px;
    }
    .pricing-v2-card-title {
        font-size: 18px;
        line-height: 26px;
    }
    .pricing-v2-checklist li,
    .pricing-v2-card-text {
        font-size: 15px;
    }
    .pricing-v2-reassurance span {
        font-size: 14px;
    }
    .pricing-v2-dot {
        width: 6px;
        height: 6px;
    }
    .pricing-v2-right {
        width: 100%;
    }
}

/* ── lp-styles ─────────────────────────────────────────── */
        /* LP Header, stripped nav, logo + CTA only */
        .lp-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: #ffffff;
            border-bottom: 1px solid #EAECF4;
            height: 68px;
            display: flex;
            align-items: center;
        }
        /* Ham icon color fix — menu-toggle is white by default (dark header), override for light lp-header */
        .lp-header .menu-toggle { color: var(--text-dark); }

        .lp-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .lp-header-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .lp-nav-pricing {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            font-family: 'Inter Tight', sans-serif;
            transition: opacity 0.2s;
        }

        .lp-nav-pricing:hover { opacity: 0.7; }

        /* Hero */
        .lp-hero {
            padding: 140px 0 96px;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .lp-hero::before {
            content: '';
            position: absolute;
            left: 50%;
            top: -5%;
            transform: translateX(-50%);
            width: 900px;
            height: 700px;
            background: radial-gradient(ellipse at center, rgba(99,91,255,0.16) 0%, transparent 65%);
            pointer-events: none;
        }

        .lp-hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        .lp-hero-text { max-width: 540px; }

        .lp-eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary-color);
            background: rgba(99,91,255,0.12);
            border: 1px solid rgba(99,91,255,0.2);
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 20px;
            font-family: 'Inter Tight', sans-serif;
        }

        .lp-hero-text h1 {
            font-size: 52px;
            line-height: 62px;
            color: var(--white);
            margin-bottom: 20px;
            font-family: 'Cal Sans', sans-serif;
        }

        .lp-hero-text h1 em {
            font-style: normal;
            color: var(--primary-color);
        }

        .lp-hero-text p {
            font-size: 18px;
            line-height: 30px;
            color: rgba(255,255,255,0.58);
            margin-bottom: 36px;
        }

        /* Dashboard mockup */
        .mock-shell {
            display: flex;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0,0,0,0.55);
            border: 1px solid rgba(255,255,255,0.08);
            font-family: 'Inter Tight', sans-serif;
            background: #f3f4f8;
        }

        /* Sidebar */
        .mock-sidebar {
            width: 148px;
            flex-shrink: 0;
            background: #0f0f1a;
            padding: 16px 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mock-brand { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.07); }

        .mock-company {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .mock-avatar {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--primary-color);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mock-co-name { font-size: 9px; font-weight: 600; color: #fff; line-height: 1.3; }
        .mock-co-role { font-size: 8px; color: rgba(255,255,255,0.4); }
        .mock-verified { color: #34d399; }

        .mock-nav { display: flex; flex-direction: column; gap: 2px; }

        .mock-nav-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 10px;
            color: rgba(255,255,255,0.45);
            padding: 6px 8px;
            border-radius: 6px;
            cursor: default;
        }

        .mock-nav-active {
            background: rgba(99,91,255,0.18);
            color: #a89fff;
        }

        /* Main */
        .mock-main {
            flex: 1;
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 0;
            background: #f3f4f8;
        }

        .mock-toggle-wrap { display: flex; justify-content: center; }

        .mock-toggle {
            display: flex;
            background: #e5e7ef;
            border-radius: 100px;
            padding: 3px;
            gap: 2px;
        }

        .mock-toggle-opt {
            font-size: 9px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 100px;
            color: rgba(0,0,0,0.4);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .mock-toggle-active {
            background: var(--primary-color);
            color: #fff;
        }

        .mock-page-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mock-page-title { font-size: 13px; font-weight: 700; color: #111; }
        .mock-page-sub { font-size: 9px; color: #888; margin-top: 1px; }

        .mock-btn-add {
            font-size: 9px;
            font-weight: 600;
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 5px 10px;
            cursor: default;
        }

        .mock-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .mock-stat {
            background: #fff;
            border-radius: 8px;
            padding: 8px 10px;
            border: 1px solid #e8eaf0;
        }

        .mock-stat-label { font-size: 8px; font-weight: 600; color: #aaa; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
        .mock-stat-val { font-size: 14px; font-weight: 700; color: #111; }
        .mock-green { color: #16a34a; }

        .mock-table-wrap {
            background: #fff;
            border-radius: 8px;
            border: 1px solid #e8eaf0;
            overflow: hidden;
            flex: 1;
        }

        .mock-table-head {
            display: grid;
            grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
            gap: 6px;
            padding: 6px 10px;
            font-size: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: #bbb;
            border-bottom: 1px solid #f0f0f5;
        }

        .mock-row {
            display: grid;
            grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
            gap: 6px;
            padding: 7px 10px;
            border-bottom: 1px solid #f7f7fb;
            align-items: center;
        }

        .mock-row:last-child { border-bottom: none; }

        .mock-name { font-size: 10px; font-weight: 600; color: #222; }
        .mock-plan { font-size: 9px; color: #888; }
        .mock-date { font-size: 9px; color: #888; }
        .mock-today { color: #f59e0b; font-weight: 600; }
        .mock-overdue { color: #ef4444; font-weight: 600; }
        .mock-pay { font-size: 9px; color: #888; }

        .mock-badge {
            display: inline-block;
            padding: 2px 7px;
            border-radius: 100px;
            font-size: 8px;
            font-weight: 700;
        }

        .mock-active { background: rgba(22,163,74,0.1); color: #16a34a; }
        .mock-due { background: rgba(245,158,11,0.1); color: #d97706; }
        .mock-overdue-b { background: rgba(239,68,68,0.1); color: #dc2626; }

        /* Hero image */
        .lp-hero-img-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lp-hero-img {
            width: 100%;
            max-width: 560px;
            height: auto;
            border-radius: 16px;
            filter: drop-shadow(0 24px 64px rgba(0,0,0,0.5));
        }

        @media (max-width: 768px) {
            .lp-hero-img { max-width: 100%; border-radius: 10px; }
        }

        /* Trust strip */
        .lp-trust {
            padding: 20px 0;
            background: #ffffff;
            border-top: 1px solid #EAECF4;
            border-bottom: 1px solid #EAECF4;
        }

        .lp-trust-inner {
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .lp-trust-inner::-webkit-scrollbar { display: none; }

        .lp-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            font-family: 'Inter Tight', sans-serif;
            padding: 0 28px;
            border-right: 1px solid #EAECF4;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .lp-trust-item:first-child { padding-left: 0; }
        .lp-trust-item:last-child { border-right: none; }

        .lp-trust-item svg { color: var(--primary-color); flex-shrink: 0; }

        /* Section shared styles */
        .lp-section { padding: 96px 0; }
        .lp-section-bg-light { background: #F7F8FB; }
        .lp-section-bg-white { background: #fff; }
        .lp-section-bg-dark {
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .lp-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary-color);
            font-family: 'Inter Tight', sans-serif;
            margin-bottom: 16px;
        }

        .lp-label-dark {
            color: rgba(99,91,255,0.75);
        }

        .lp-h2 {
            font-size: 40px;
            line-height: 50px;
            color: var(--text-dark);
            margin-bottom: 16px;
            font-family: 'Cal Sans', sans-serif;
        }

        .lp-h2-white { color: var(--white); }

        .lp-lead {
            font-size: 18px;
            line-height: 30px;
            color: var(--text-muted);
            max-width: 580px;
        }

        .lp-lead-dark { color: rgba(255,255,255,0.55); }

        /* Pain section */
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .pain-card {
            background: #fff;
            border: 1.5px solid #EAECF4;
            border-radius: 14px;
            padding: 28px 24px;
        }

        .pain-card-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .pain-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(248,113,113,0.08);
            border: 1.5px solid rgba(248,113,113,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #f87171;
        }

        .pain-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            font-family: 'Inter Tight', sans-serif;
            margin: 0;
        }

        .pain-card p {
            font-size: 15px;
            line-height: 24px;
            color: var(--text-muted);
            margin: 0;
        }

        /* How it works */
        .hiw-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .hiw-step { position: relative; }

        .hiw-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-color);
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-family: 'Inter Tight', sans-serif;
        }

        .hiw-step h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-family: 'Inter Tight', sans-serif;
        }

        .hiw-step p {
            font-size: 15px;
            line-height: 25px;
            color: var(--text-muted);
            margin: 0;
        }

        /* Solution section */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .solution-card {
            background: #F7F8FB;
            border: 1.5px solid #EAECF4;
            border-radius: 14px;
            padding: 28px 24px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .solution-card:hover {
            border-color: rgba(99,91,255,0.35);
            box-shadow: 0 4px 20px rgba(99,91,255,0.07);
        }

        .solution-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(99,91,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .solution-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-family: 'Inter Tight', sans-serif;
        }

        .solution-card p {
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            margin: 0;
        }

        /* API block */
        .lp-api::before {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 500px;
            height: 500px;
            background: radial-gradient(ellipse, rgba(99,91,255,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .lp-api-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .lp-api-code {
            background: #0d1117;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            font-family: 'Courier New', Courier, monospace;
        }

        .api-code-topbar {
            background: #161b22;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .api-code-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .api-code-dot.r { background: #ff5f57; }
        .api-code-dot.y { background: #ffbd2e; }
        .api-code-dot.g { background: #28c840; }

        .api-code-filename {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            margin-left: 6px;
            font-family: 'Inter Tight', sans-serif;
        }

        .api-code-body {
            padding: 24px;
            font-size: 13px;
            line-height: 22px;
        }

        .code-comment { color: #6a737d; }
        .code-key { color: #79b8ff; }
        .code-string { color: #9ecbff; }
        .code-method { color: #f97583; }
        .code-url { color: #b392f0; }
        .code-num { color: #79b8ff; }
        .code-dim { color: rgba(255,255,255,0.3); }

        .lp-api-links {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .btn-api {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 12px 22px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Inter Tight', sans-serif;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-api:hover {
            border-color: rgba(99,91,255,0.6);
            background: rgba(99,91,255,0.08);
            opacity: 1;
        }

        /* Auto-debit section */
        .lp-autodebit {
            background: #F7F8FB;
        }

        .lp-autodebit-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .autodebit-now,
        .autodebit-future {
            background: #fff;
            border: 1.5px solid #EAECF4;
            border-radius: 14px;
            padding: 32px 28px;
        }

        .autodebit-future {
            border-color: rgba(99,91,255,0.25);
            background: rgba(99,91,255,0.03);
        }

        .autodebit-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 16px;
            font-family: 'Inter Tight', sans-serif;
        }

        .autodebit-tag.now {
            background: rgba(52,211,153,0.1);
            color: #34d399;
        }

        .autodebit-tag.future {
            background: rgba(99,91,255,0.1);
            color: var(--primary-color);
        }

        .autodebit-now h3,
        .autodebit-future h3 {
            font-size: 22px;
            line-height: 30px;
            font-family: 'Cal Sans', sans-serif;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .autodebit-now p,
        .autodebit-future p {
            font-size: 15px;
            line-height: 25px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .autodebit-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .autodebit-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            font-family: 'Inter Tight', sans-serif;
        }

        .autodebit-list li svg { flex-shrink: 0; margin-top: 1px; }

        /* Final CTA */
        .lp-cta {
            text-align: center;
        }

        .lp-cta::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 700px;
            height: 350px;
            background: radial-gradient(ellipse at center top, rgba(99,91,255,0.22) 0%, transparent 65%);
            pointer-events: none;
        }

        .lp-cta-inner {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
        }

        .lp-cta h2 {
            font-size: 44px;
            line-height: 54px;
            color: var(--white);
            margin-bottom: 16px;
            font-family: 'Cal Sans', sans-serif;
        }

        .lp-cta p {
            font-size: 18px;
            line-height: 28px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 36px;
        }

        .lp-cta h2 em {
            font-style: normal;
            color: var(--primary-color);
        }

        .lp-cta-note {
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            font-family: 'Inter Tight', sans-serif;
        }

        /* Responsive */
        .lp-footer {
            padding: 24px 0;
            background: #0a0a14;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .lp-footer-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            font-size: 13px;
            color: rgba(255,255,255,0.25);
            font-family: 'Inter Tight', sans-serif;
        }

        .lp-footer-inner a {
            color: rgba(255,255,255,0.35);
            transition: color 0.2s;
        }

        .lp-footer-inner a:hover { color: rgba(255,255,255,0.65); }

        .lp-footer-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .lp-hero-inner { gap: 48px; }
            .lp-hero-text h1 { font-size: 44px; line-height: 54px; }
            .lp-api-inner { gap: 48px; }
            .lp-autodebit-inner { gap: 24px; }
        }

        @media (max-width: 900px) {
            .pain-grid { grid-template-columns: repeat(2, 1fr); }
            .pain-card { grid-column: span 1; }
            .hiw-grid { grid-template-columns: 1fr; gap: 24px; }
        }

        @media (max-width: 768px) {
            .lp-hero { padding: 108px 0 72px; }
            .lp-hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .mock-sidebar { display: none; }
            .mock-shell { border-radius: 10px; }
            .lp-hero-text { max-width: 100%; }
            .lp-hero-text h1 { font-size: 36px; line-height: 46px; }
            .lp-hero-text p { font-size: 16px; }
            .lp-section { padding: 72px 0; }
            .lp-h2 { font-size: 30px; line-height: 40px; }
            .pain-grid { grid-template-columns: 1fr; }
            .pain-card { grid-column: span 1; }
            .hiw-grid { grid-template-columns: 1fr; }
            .lp-api-inner { grid-template-columns: 1fr; gap: 40px; }
            .lp-autodebit-inner { grid-template-columns: 1fr; }
            .lp-cta h2 { font-size: 30px; line-height: 40px; }
            .lp-trust-item { padding: 0 20px; }
        }

        @media (max-width: 480px) {
            .lp-hero-text h1 { font-size: 30px; line-height: 40px; }
        }

/* ── home-styles ─────────────────────────────────────────── */
        /* Integration strip */
        .integration-strip {
            padding: 20px 0;
            background: #fff;
            border-bottom: 1px solid #EAECF4;
        }

        .integration-strip-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .integration-strip-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            font-family: 'Inter Tight', sans-serif;
        }

        .integration-logos {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .integration-logos img {
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .integration-logos img:hover { opacity: 1; }


        /* Identity section */
        .identity-section {
            padding: 96px 0;
            background: #fff;
        }

        /* How it works */
        .hiw-section {
            padding: 96px 0;
            background: var(--bg-light);
        }

        .hiw-section .hiw-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .hiw-step-item { position: relative; }

        .hiw-step-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-color);
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-family: 'Inter Tight', sans-serif;
        }

        .hiw-step-item h3 {
            font-size: 20px;
            line-height: 28px;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: 600;
        }

        .hiw-step-item p {
            font-size: 15px;
            line-height: 24px;
            color: var(--text-muted);
            margin: 0;
        }

        /* Section label shared */
        .lp-label-dark-text {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary-color);
            font-family: 'Inter Tight', sans-serif;
            margin-bottom: 16px;
        }

        /* Trust strip */
        .trust-strip {
            padding: 0;
            background: #fff;
            border-bottom: 1px solid #EAECF4;
        }
        .trust-strip-inner {
            display: flex;
            align-items: stretch;
            width: fit-content;
            margin: 0 auto;
            max-width: 100%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .trust-strip-inner::-webkit-scrollbar { display: none; }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            font-family: 'Inter Tight', sans-serif;
            padding: 14px 28px;
            border-right: 1px solid #EAECF4;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .trust-item:last-child { border-right: none; }
        .trust-item svg { color: var(--primary-color); flex-shrink: 0; }


        /* Auto-debit section */
        .autodebit-section {
            padding: 96px 0;
            background: #fff;
        }
        .autodebit-section h2 {
            font-size: 40px;
            line-height: 50px;
            color: var(--text-dark);
            margin-bottom: 16px;
            font-family: 'Cal Sans', sans-serif;
        }
        .autodebit-section .section-lead {
            font-size: 18px;
            line-height: 30px;
            color: var(--text-muted);
            max-width: 560px;
            margin-bottom: 48px;
        }
        .autodebit-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: start;
        }
        .autodebit-now, .autodebit-future {
            background: #fff;
            border: 1.5px solid #EAECF4;
            border-radius: 14px;
            padding: 32px 28px;
        }
        .autodebit-future {
            border-color: rgba(99,91,255,0.25);
            background: rgba(99,91,255,0.02);
        }
        .autodebit-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 16px;
            font-family: 'Inter Tight', sans-serif;
        }
        .autodebit-tag.now { background: rgba(52,211,153,0.1); color: #059669; }
        .autodebit-tag.future { background: rgba(99,91,255,0.1); color: var(--primary-color); }
        .autodebit-now h3, .autodebit-future h3 {
            font-size: 22px;
            line-height: 30px;
            font-family: 'Cal Sans', sans-serif;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .autodebit-now p, .autodebit-future p {
            font-size: 15px;
            line-height: 25px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .autodebit-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .autodebit-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            font-family: 'Inter Tight', sans-serif;
        }
        .autodebit-list li svg { flex-shrink: 0; margin-top: 1px; }

        /* Pricing mobile centering */
        @media (max-width: 768px) {
            .pricing-v2-layout {
                flex-direction: column !important;
                gap: 24px !important;
            }
            .pricing-v2-left {
                flex: none !important;
                width: 100% !important;
                max-width: 100% !important;
                text-align: center !important;
            }
            .pricing-v2-eyebrow {
                display: block !important;
                text-align: center !important;
            }
            .pricing-v2-left h2 {
                text-align: center !important;
            }
            .pricing-v2-subtitle {
                text-align: center !important;
            }
            .pricing-v2-right {
                width: 100% !important;
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .cardgrid-cards { grid-template-columns: 1fr 1fr; }
            .hiw-section .hiw-steps { grid-template-columns: 1fr; gap: 24px; }
            .autodebit-inner { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .pain-section h2 { font-size: 30px; line-height: 40px; }
            .cardgrid-cards { grid-template-columns: 1fr; }
            .hiw-section .hiw-steps { grid-template-columns: 1fr; }
            .integration-strip-inner { gap: 16px; }
            .solution-section h2, .autodebit-section h2 { font-size: 30px; line-height: 40px; }
            .trust-item { padding: 14px 18px; }
        }

/* ── hiw-styles ─────────────────────────────────────────── */
        /* How It Works page — step timeline */
        .hiw-steps.bg-white {
            padding: 80px 0;
        }

        .hiw-steps-inner {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 780px;
            margin: 0 auto;
        }

        .hiw-step {
            display: flex;
            gap: 32px;
            position: relative;
        }

        .hiw-step-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .hiw-steps-inner .hiw-step-num {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--primary-color);
            color: #fff;
            font-family: 'Cal Sans', sans-serif;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .hiw-step-line {
            width: 2px;
            flex: 1;
            background: #E2E5F0;
            margin: 8px 0;
            min-height: 48px;
        }

        .hiw-step:last-child .hiw-step-line {
            display: none;
        }

        .hiw-step-content {
            padding-bottom: 56px;
            padding-top: 10px;
        }

        .hiw-step:last-child .hiw-step-content {
            padding-bottom: 0;
        }

        .hiw-step-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .hiw-step-content h3 {
            font-size: 26px;
            line-height: 34px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .hiw-step-content p {
            font-size: 16px;
            line-height: 26px;
            color: var(--text-muted);
            max-width: 560px;
        }

        .hiw-step-content .hiw-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            background: #F0EFFF;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
        }

        /* Repeat section */
        .repeat-section {
            padding: 80px 0;
            text-align: center;
        }

        .repeat-cycle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .cycle-pill {
            background: var(--white);
            border: 1.5px solid #E2E5F0;
            border-radius: 100px;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .cycle-arrow {
            color: var(--primary-color);
            font-size: 22px;
            font-weight: 300;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .hiw-step-content h3 {
                font-size: 20px;
                line-height: 28px;
            }

            .hiw-steps-inner .hiw-step-num {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .hiw-step {
                gap: 20px;
            }

            .cycle-arrow {
                display: none;
            }
        }

/* ── innovate-styles ─────────────────────────────────────────── */
        /* ── Innovate page styles ───────────────────────────── */

        .innovate-hero {
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .innovate-hero .hero-glow-top,
        .innovate-hero .hero-glow-main {
            pointer-events: none;
        }

        .innovate-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 780px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .innovate-eyebrow {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary-color);
            background: rgba(99,91,255,0.12);
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 28px;
        }

        .innovate-hero h1 {
            font-size: 62px;
            line-height: 72px;
            color: var(--white);
            margin-bottom: 24px;
        }

        .innovate-hero h1 span {
            color: var(--primary-color);
        }

        .innovate-hero p {
            font-size: 20px;
            line-height: 32px;
            color: rgba(255,255,255,0.65);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* ── Insight Section ───────────────────────────────── */
        .insight-section {
            padding: 80px 0;
            background: var(--white);
        }

        .insight-inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .insight-inner h2 {
            font-size: 38px;
            line-height: 48px;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .insight-inner p {
            font-size: 18px;
            line-height: 30px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .insight-inner p strong {
            color: var(--text-dark);
        }

        .insight-stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 48px 0;
        }

        .insight-stat {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
        }

        .insight-stat h3 {
            font-size: 36px;
            line-height: 1;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .insight-stat p {
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ── Ideas Grid ────────────────────────────────────── */
        .ideas-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .ideas-section .section-title {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .ideas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .idea-card {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1.5px solid #EAECF4;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .idea-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 24px rgba(99,91,255,0.08);
        }

        .idea-icon {
            font-size: 32px;
            margin-bottom: 16px;
            display: block;
        }

        .idea-card h3 {
            font-size: 18px;
            line-height: 26px;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .idea-card p {
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .idea-model {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-color);
            background: rgba(99,91,255,0.08);
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* ── Infrastructure Section ────────────────────────── */
        .infra-section {
            padding: 80px 0;
            background: var(--white);
        }

        .infra-inner {
            display: flex;
            gap: 72px;
            align-items: flex-start;
        }

        .infra-left {
            flex: 1;
            max-width: 480px;
        }

        .infra-left h2 {
            font-size: 40px;
            line-height: 50px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .infra-left h2 span {
            color: var(--primary-color);
        }

        .infra-left p {
            font-size: 17px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .infra-right {
            flex: 1;
        }

        .infra-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .infra-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .infra-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(99,91,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-color);
        }

        .infra-item-text h4 {
            font-size: 16px;
            line-height: 24px;
            color: var(--text-dark);
            margin-bottom: 4px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: 600;
        }

        .infra-item-text p {
            font-size: 14px;
            line-height: 22px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ── Developer Integration Methods ─────────────────── */
        .devint-section {
            padding: 80px 0;
        }

        .devint-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }

        .devint-card {
            border: 1.5px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: var(--white);
            position: relative;
        }

        .devint-card--soon {
            opacity: 0.75;
        }

        .devint-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .devint-effort {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .devint-effort-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .devint-effort-value {
            font-size: 12px;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
        }

        .devint-effort--easy {
            background: rgba(52, 211, 153, 0.12);
            color: #059669;
        }

        .devint-effort--medium {
            background: rgba(251, 191, 36, 0.15);
            color: #b45309;
        }

        .devint-effort--technical {
            background: rgba(99, 91, 255, 0.12);
            color: var(--primary-color);
        }

        .devint-status {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .devint-status--live {
            background: rgba(52, 211, 153, 0.12);
            color: #059669;
        }

        .devint-status--soon {
            background: rgba(251, 191, 36, 0.12);
            color: #b45309;
        }

        .devint-icon {
            color: var(--primary-color);
        }

        .devint-card h2 {
            font-size: 22px;
            line-height: 30px;
            color: var(--text-dark);
            margin: 0;
        }

        .devint-card p {
            font-size: 15px;
            line-height: 26px;
            color: var(--text-muted);
            margin: 0;
        }

        .devint-example {
            background: #f4f4f8;
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .devint-example-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .devint-code {
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            color: var(--primary-color);
            word-break: break-all;
        }

        .devint-usecase {
            font-size: 13px !important;
            color: var(--text-muted);
            font-style: italic;
        }

        .devint-coming-soon-detail {
            background: #f4f4f8;
            border-radius: 10px;
            padding: 14px 16px;
        }

        .devint-coming-soon-detail p {
            font-size: 12px !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            margin-bottom: 8px !important;
        }

        .devint-coming-soon-detail ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .devint-coming-soon-detail ul li {
            font-size: 14px;
            color: var(--text-dark);
            padding-left: 16px;
            position: relative;
        }

        .devint-coming-soon-detail ul li::before {
            content: '·';
            position: absolute;
            left: 4px;
            color: var(--primary-color);
        }

        .devint-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            margin-top: 4px;
        }

        .devint-link:hover {
            text-decoration: underline;
        }

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

        /* ── API Section (code block layout) ───────────────── */
        .api-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .api-inner {
            display: flex;
            gap: 64px;
            align-items: center;
        }

        .api-left {
            flex: 1;
            max-width: 460px;
        }

        .api-left h2 {
            font-size: 40px;
            line-height: 50px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .api-left h2 span {
            color: var(--primary-color);
        }

        .api-left p {
            font-size: 17px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .api-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            padding: 10px 22px;
            border: 1.5px solid var(--text-dark);
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            transition: background 0.18s, color 0.18s;
        }

        .btn-outline-dark:hover {
            background: var(--text-dark);
            color: #fff;
        }

        .api-right {
            flex: 1;
        }

        .api-code-block {
            background: #0f1117;
            border-radius: 16px;
            padding: 32px;
            font-family: 'Courier New', Courier, monospace;
        }

        .api-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .api-feature-list li {
            font-size: 15px;
            color: var(--text-muted);
            padding-left: 20px;
            position: relative;
            line-height: 22px;
        }

        .api-feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 13px;
        }

        .api-endpoint-list {
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 20px;
            padding-bottom: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .api-endpoint-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 4px 0;
            opacity: 0.45;
        }

        .api-endpoint-row--active {
            opacity: 1;
        }

        .api-endpoint-path {
            color: rgba(255,255,255,0.75);
            font-size: 13px;
            font-family: 'Courier New', Courier, monospace;
        }

        .api-method {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 2px 8px;
            border-radius: 4px;
            font-family: 'Courier New', Courier, monospace;
            min-width: 42px;
            text-align: center;
        }

        .api-method--post {
            background: rgba(99,91,255,0.2);
            color: #a89dff;
        }

        .api-method--get {
            background: rgba(52,211,153,0.15);
            color: #6ee7b7;
        }

        .api-endpoint {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
        }

        .api-code {
            margin: 0;
            padding: 0;
            background: none;
            border: none;
            font-size: 14px;
            line-height: 26px;
            color: rgba(255,255,255,0.55);
            white-space: pre;
        }

        .api-code code {
            background: none;
            padding: 0;
            font-size: inherit;
        }

        .api-key {
            color: #7dd3fc;
        }

        .api-val {
            color: #86efac;
        }

        .api-num {
            color: #fca5a5;
        }

        .api-comment {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            font-family: 'Courier New', Courier, monospace;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .api-inner {
                flex-direction: column;
                gap: 40px;
            }
            .api-left {
                max-width: 100%;
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .ideas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .infra-inner {
                flex-direction: column;
                gap: 48px;
            }
            .infra-left {
                max-width: 100%;
            }
            .insight-stat-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 640px) {
            .innovate-hero h1 {
                font-size: 40px;
                line-height: 50px;
            }
            .ideas-grid {
                grid-template-columns: 1fr;
            }
            .insight-stat-row {
                grid-template-columns: 1fr;
            }
            .insight-inner h2 {
                font-size: 28px;
                line-height: 36px;
            }
        }

/* ── privacy-styles ─────────────────────────────────────────── */
        .legal-page {
            padding: 80px 0 100px;
            background: var(--white);
        }

        .legal-hero {
            padding: 64px 0 48px;
            background: var(--dark-bg);
        }

        .legal-hero h1 {
            font-size: 48px;
            line-height: 58px;
            color: var(--white);
            margin-bottom: 16px;
        }

        .legal-hero p {
            font-size: 16px;
            color: rgba(255,255,255,0.55);
        }

        .legal-body {
            max-width: 760px;
        }

        .legal-body h2 {
            font-size: 22px;
            line-height: 30px;
            color: var(--text-dark);
            margin: 48px 0 16px;
            padding-top: 48px;
            border-top: 1px solid #E8EAF0;
        }

        .legal-body h2:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .legal-body p {
            font-size: 16px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .legal-body ul {
            margin: 0 0 16px 0;
            padding-left: 24px;
        }

        .legal-body ul li {
            font-size: 16px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .legal-body a {
            color: var(--primary-color);
        }

        .legal-toc {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 28px 32px;
            margin-bottom: 56px;
        }

        .legal-toc p {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 16px !important;
        }

        .legal-toc ol {
            margin: 0;
            padding-left: 20px;
        }

        .legal-toc ol li {
            font-size: 15px;
            line-height: 26px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .legal-toc ol li a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .legal-badge {
            display: inline-block;
            background: #F0EFFF;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 32px;
        }

/* ── terms-styles ─────────────────────────────────────────── */
        .legal-page {
            padding: 80px 0 100px;
            background: var(--white);
        }

        .legal-hero {
            padding: 64px 0 48px;
            background: var(--dark-bg);
        }

        .legal-hero h1 {
            font-size: 48px;
            line-height: 58px;
            color: var(--white);
            margin-bottom: 16px;
        }

        .legal-hero p {
            font-size: 16px;
            color: rgba(255,255,255,0.55);
        }

        .legal-body {
            max-width: 760px;
        }

        .legal-body h2 {
            font-size: 22px;
            line-height: 30px;
            color: var(--text-dark);
            margin: 48px 0 16px;
            padding-top: 48px;
            border-top: 1px solid #E8EAF0;
        }

        .legal-body h2:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .legal-body p {
            font-size: 16px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .legal-body ul {
            margin: 0 0 16px 0;
            padding-left: 24px;
        }

        .legal-body ul li {
            font-size: 16px;
            line-height: 28px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .legal-body a {
            color: var(--primary-color);
        }

        .legal-toc {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 28px 32px;
            margin-bottom: 56px;
        }

        .legal-toc p {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 16px !important;
        }

        .legal-toc ol {
            margin: 0;
            padding-left: 20px;
        }

        .legal-toc ol li {
            font-size: 15px;
            line-height: 26px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .legal-toc ol li a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .legal-badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 32px;
        }

/* ── blog-styles ─────────────────────────────────────────── */
        .blog-index-hero { padding: 120px 0 64px; background: var(--dark-bg); text-align: center; }
        .blog-index-hero h1 { font-size: 52px; line-height: 62px; color: var(--white); margin-bottom: 16px; }
        .blog-index-hero p { font-size: 18px; line-height: 28px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; }
        .blog-index-body { padding: 72px 0 96px; background: var(--bg-light); }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
        .blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1.5px solid #EAECF4; transition: border-color 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
        .blog-card:hover { border-color: var(--primary-color); box-shadow: 0 4px 24px rgba(99,91,255,0.08); }
        .blog-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
        .blog-card-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-color); background: rgba(99,91,255,0.08); padding: 3px 10px; border-radius: 6px; margin-bottom: 14px; }
        .blog-card h2 { font-size: 18px; line-height: 26px; color: var(--text-dark); margin-bottom: 12px; }
        .blog-card p { font-size: 14px; line-height: 22px; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
        .blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(66,84,102,0.6); border-top: 1px solid #F0F2F5; padding-top: 16px; margin-top: auto; }
        .blog-card-link { display: block; text-decoration: none; color: inherit; }
        .blog-card-link:hover { opacity: 1; }
        .blog-card-read { font-size: 13px; font-weight: 600; color: var(--primary-color); display: flex; align-items: center; gap: 4px; }
        .blog-featured { grid-column: span 2; }
        .blog-featured .blog-card-body { padding: 36px 32px; }
        .blog-featured h2 { font-size: 24px; line-height: 32px; }
        .blog-featured p { font-size: 15px; }
        @media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-featured { grid-column: span 2; } }
        @media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } .blog-featured { grid-column: span 1; } .blog-index-hero h1 { font-size: 36px; line-height: 46px; } }

/* ── blog article styles ─────────────────────────────────────── */
        .blog-hero { position: relative; padding: 120px 0 64px; background: var(--dark-bg); text-align: center; overflow: hidden; }
        .blog-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 24px; }
        .blog-hero h1 { font-size: 44px; line-height: 56px; color: var(--white); margin-bottom: 24px; }
        .blog-hero-meta { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.5); }
        .blog-category { display: inline-block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 20px; transition: color 0.2s; }
        .blog-category:hover { color: var(--white); }

        .blog-body { padding: 72px 0 96px; background: var(--bg-light); }
        .blog-body-inner { max-width: 720px; margin: 0 auto; }
        .blog-body-inner p { font-size: 16px; line-height: 28px; color: var(--text-muted); margin-bottom: 24px; }
        .blog-body-inner h2 { font-size: 26px; line-height: 34px; color: var(--text-dark); margin: 40px 0 16px; }
        .blog-body-inner h3 { font-size: 20px; line-height: 28px; color: var(--text-dark); margin: 32px 0 12px; }
        .blog-body-inner ul, .blog-body-inner ol { margin: 16px 0 24px 24px; }
        .blog-body-inner li { font-size: 16px; line-height: 28px; color: var(--text-muted); margin-bottom: 8px; }
        .blog-body-inner strong { color: var(--text-dark); font-weight: 600; }
        .blog-divider { border: none; border-top: 1px solid #E8EAF2; margin: 40px 0; }

        .idea-entry { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid #EAECF4; align-items: flex-start; }
        .idea-entry:last-of-type { border-bottom: none; }
        .idea-entry-left { flex-shrink: 0; padding-top: 2px; }
        .idea-number { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-color); color: var(--white); font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
        .idea-entry-body { flex: 1; }
        .idea-entry h3 { font-size: 17px; line-height: 24px; color: var(--text-dark); margin: 6px 0 10px; }
        .idea-entry p { font-size: 15px; line-height: 26px; color: var(--text-muted); margin: 0 0 10px; }
        .idea-entry p:last-child { margin-bottom: 0; }
        .idea-model-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-color); background: rgba(99,91,255,0.1); padding: 3px 10px; border-radius: 6px; }
        .idea-tag-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-color); background: rgba(99,91,255,0.1); padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
        /* stacked layout for tag-pill entries (no number circle) */
        .idea-entry-left:has(.idea-tag-pill) { width: 100%; }
        .idea-entry:has(.idea-tag-pill) { flex-direction: column; gap: 0; }
        .idea-entry:has(.idea-tag-pill) .idea-entry-left { padding-top: 0; }
        .idea-entry:has(.idea-tag-pill) .idea-entry-body h3 { margin-top: 8px; }

        .blog-cta-box { background: linear-gradient(135deg, #1C1933 0%, #2A1F5A 100%); border-radius: 16px; padding: 40px; margin-top: 48px; text-align: center; }
        .blog-also-read { margin-top: 40px; padding: 20px 24px; background: var(--bg-light); border-radius: 0 10px 10px 0; border-left: 3px solid var(--primary-color); font-size: 14px; line-height: 24px; color: var(--text-muted, #6b7280); }
        .blog-also-read span { font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 10px; }
        .blog-also-read ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
        .blog-also-read li::before { content: '→'; margin-right: 8px; color: var(--primary-color); font-weight: 600; }
        .blog-also-read a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
        .blog-also-read a:hover { text-decoration: underline; }
        .blog-cta-box h3 { font-size: 24px; line-height: 32px; color: var(--white); margin-bottom: 12px; }
        .blog-cta-box p { font-size: 15px; line-height: 24px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }

        .blog-code-block { background: #0F0E1A; border-radius: 12px; padding: 24px; margin: 24px 0; overflow-x: auto; }
        .blog-code-block code { font-family: 'Courier New', Courier, monospace; font-size: 13px; line-height: 22px; color: #E0DDFF; white-space: pre; display: block; }

        .comparison-table-wrapper { overflow-x: auto; margin: 24px 0; }
        .comparison-table { width: 100%; border-collapse: collapse; font-size: 15px; }
        .comparison-table th { background: var(--dark-bg); color: var(--white); padding: 14px 20px; text-align: left; font-weight: 600; }
        .comparison-table th:first-child { border-radius: 10px 0 0 0; }
        .comparison-table th:last-child { border-radius: 0 10px 0 0; }
        .comparison-table td { padding: 12px 20px; border-bottom: 1px solid #EAECF4; color: var(--text-muted); }
        .comparison-table tr:last-child td { border-bottom: none; }
        .comparison-table tr:nth-child(even) td { background: rgba(99,91,255,0.03); }
        .comp-yes { color: #1DB568; font-weight: 600; }
        .comp-no { color: #E53E3E; font-weight: 600; }
        .comp-partial { color: #D97706; font-weight: 500; }

        @media (max-width: 768px) { .blog-hero h1 { font-size: 30px; line-height: 40px; } .blog-body-inner { padding: 0 16px; } .blog-cta-box { padding: 28px 20px; } .idea-entry { flex-direction: column; gap: 12px; } }

/* ── Hub / content pages ─────────────────────────────────────────── */

.content-section {
    padding: 72px 0;
}

.content-section h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.content-section h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.content-section p {
    font-size: 17px;
    line-height: 28px;
    color: var(--text-muted);
    margin: 0 0 18px;
}

.content-section ul:not(.hub-link-list):not(.feature-list) {
    padding-left: 20px;
    margin: 0 0 18px;
}

.content-section ul:not(.hub-link-list):not(.feature-list) li {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.section-label-wrap {
    margin-bottom: 12px;
}

/* Hub link list — clean linked list with arrows */
.hub-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-link-list li {
    border-bottom: 1px solid var(--border-color, #EAECF4);
    padding: 12px 0;
}

.hub-link-list li:first-child {
    border-top: 1px solid var(--border-color, #EAECF4);
}

.hub-link-list li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    transition: opacity 0.15s;
}

.hub-link-list li a:hover {
    opacity: 0.75;
}

/* Feature list — checkmark style */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.feature-list li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-muted);
    padding: 6px 0 6px 28px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Step blocks in content pages */
.step-block {
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.step-block strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-block p {
    margin: 0;
    font-size: 15px;
}

/* Comparison table in content pages */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 12px;
    border: 1px solid #EAECF4;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table thead th {
    background: var(--dark-bg);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #EAECF4;
    color: var(--text-muted);
    vertical-align: top;
    line-height: 22px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

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

@media (max-width: 768px) {
    .content-section { padding: 48px 0; }
    .content-section h2 { font-size: 26px; line-height: 34px; }
    .hub-link-list li a { font-size: 15px; }
}
