.module-page {
    background: #fff;
}

.module-page main {
    overflow: hidden;
}

.module-hero {
    position: relative;
    padding: 146px 0 88px;
    background:
        radial-gradient(circle at 82% 12%, rgba(20, 110, 245, 0.12), transparent 33%),
        linear-gradient(180deg, #fafbfd 0%, #f3f6fb 100%);
}

.module-hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(20, 110, 245, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 72px rgba(20, 110, 245, 0.035),
        0 0 0 144px rgba(20, 110, 245, 0.025);
    pointer-events: none;
}

.module-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: 76px;
    align-items: center;
}

.module-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.module-breadcrumb a:hover {
    color: var(--blue);
}

.module-breadcrumb span {
    color: var(--steel-3);
}

.module-kicker-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.module-kicker {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.module-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green-bg);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.module-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.module-status.upcoming {
    background: #fff2dc;
    color: #a66306;
}

.module-hero h1 {
    max-width: 660px;
    margin-bottom: 22px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(48px, 5.7vw, 76px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.module-hero h1 span {
    color: var(--blue);
}

.module-lede {
    max-width: 590px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

.module-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.module-mini-proof {
    display: flex;
    gap: 22px;
    margin-top: 32px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.module-mini-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.module-mini-proof span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--blue);
}

.product-window {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(174, 187, 207, 0.8);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 80px rgba(10, 27, 61, 0.16);
    backdrop-filter: blur(12px);
}

.product-window-inner {
    min-height: 410px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 14px;
    background: #fff;
}

.product-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid var(--rule);
    background: #fbfcfe;
}

.product-window-title {
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--steel-2);
}

.window-actions {
    width: 72px;
    height: 8px;
    border-radius: 999px;
    background: var(--mist);
}

.product-content {
    padding: 22px;
}

.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.product-toolbar b {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
}

.fake-button {
    padding: 7px 11px;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.project-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.board-column {
    min-height: 274px;
    padding: 10px;
    border-radius: 10px;
    background: #f5f7fb;
}

.board-column h3 {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.task-card {
    margin-bottom: 8px;
    padding: 11px 9px;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(10, 27, 61, 0.04);
}

.task-card b,
.task-card span {
    display: block;
}

.task-card b {
    margin-bottom: 9px;
    color: var(--ink);
    font-size: 9px;
    line-height: 1.35;
}

.task-card span {
    width: 65%;
    height: 5px;
    border-radius: 99px;
    background: var(--mist);
}

.crm-pipeline {
    display: grid;
    gap: 10px;
}

.pipeline-row {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--rule);
    border-radius: 10px;
}

.pipeline-row strong,
.pipeline-row span {
    font-size: 10px;
}

.pipeline-row strong {
    color: var(--ink);
}

.pipeline-row span {
    color: var(--muted);
}

.stage-chip {
    display: inline-flex;
    width: max-content;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--blue) !important;
    font-weight: 700;
}

.pipeline-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.pipeline-stat {
    padding: 12px;
    border-radius: 9px;
    background: var(--mist);
}

.pipeline-stat span,
.pipeline-stat b {
    display: block;
}

.pipeline-stat span {
    color: var(--muted);
    font-size: 8px;
    text-transform: uppercase;
}

.pipeline-stat b {
    margin-top: 2px;
    color: var(--navy);
    font-size: 15px;
}

.esign-workspace {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    min-height: 362px;
}

.esign-sidebar {
    padding: 20px 13px;
    border-right: 1px solid var(--rule);
    background: #f7f9fc;
}

.esign-sidebar span {
    display: block;
    height: 8px;
    margin-bottom: 14px;
    border-radius: 99px;
    background: var(--steel);
}

.esign-sidebar span:nth-child(2) {
    width: 75%;
    background: #bcd1f4;
}

.document-canvas {
    padding: 18px;
    background: var(--mist);
}

.document-paper {
    min-height: 320px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(10, 27, 61, 0.08);
}

.document-paper h3 {
    margin-bottom: 24px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 17px;
}

.doc-line {
    height: 6px;
    margin-bottom: 10px;
    border-radius: 99px;
    background: var(--steel);
}

.doc-line.short {
    width: 63%;
}

.signature-field {
    margin-top: 32px;
    padding: 13px;
    border: 1.5px dashed var(--blue);
    border-radius: 8px;
    background: #f5f9ff;
    color: var(--blue);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
}

.invoice-shell {
    display: grid;
    grid-template-columns: 1fr 0.48fr;
    gap: 14px;
}

.invoice-paper {
    min-height: 300px;
    padding: 21px;
    border: 1px solid var(--rule);
    border-radius: 10px;
}

.invoice-title,
.invoice-line,
.invoice-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.invoice-title {
    margin-bottom: 28px;
}

.invoice-title b {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 19px;
}

.invoice-line {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--muted);
    font-size: 9px;
}

.invoice-total {
    margin-top: 24px;
    color: var(--navy);
    font-size: 11px;
}

.invoice-total b {
    font-size: 15px;
}

.invoice-side {
    padding: 14px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
}

.invoice-side span,
.invoice-side b {
    display: block;
}

.invoice-side span {
    color: #9ba9c4;
    font-size: 8px;
    text-transform: uppercase;
}

.invoice-side b {
    margin: 4px 0 18px;
    font-size: 18px;
}

.invoice-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
    margin-top: 28px;
}

.invoice-chart i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: #2d63c5;
}

.invoice-chart i:nth-child(1) { height: 42%; }
.invoice-chart i:nth-child(2) { height: 68%; }
.invoice-chart i:nth-child(3) { height: 55%; }
.invoice-chart i:nth-child(4) { height: 88%; background: #6fa3ff; }

.chat-layout {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    min-height: 362px;
}

.chat-sidebar {
    padding: 18px 12px;
    border-right: 1px solid var(--rule);
    background: var(--navy);
}

.chat-sidebar b {
    display: block;
    margin-bottom: 17px;
    color: #fff;
    font-size: 10px;
}

.chat-sidebar span {
    display: block;
    padding: 7px 8px;
    border-radius: 6px;
    color: #aebbd2;
    font-size: 8px;
}

.chat-sidebar span.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.chat-main {
    padding: 20px;
    background: #fbfcfe;
}

.chat-main h3 {
    padding-bottom: 13px;
    border-bottom: 1px solid var(--rule);
    color: var(--navy);
    font-size: 12px;
}

.message {
    max-width: 88%;
    margin-top: 16px;
    padding: 11px 13px;
    border-radius: 10px 10px 10px 2px;
    background: var(--mist);
    color: var(--ink);
    font-size: 9px;
    line-height: 1.5;
}

.message.ai {
    margin-left: auto;
    border-radius: 10px 10px 2px 10px;
    background: #e9f1ff;
    color: #174d9c;
}

.message b {
    display: block;
    margin-bottom: 3px;
    font-size: 8px;
}

.feature-section {
    padding: 100px 0;
    background: #fff;
}

.feature-head {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.feature-head .module-kicker {
    display: block;
    margin-bottom: 13px;
}

.feature-head h2 {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.feature-head p {
    max-width: 590px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 18px;
    background: #fbfcfe;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: #b8cae7;
    box-shadow: var(--sh-md);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 42px;
    border-radius: 11px;
    background: #e9f1ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.feature-card h3 {
    margin-bottom: 18px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
}

.feature-card ul {
    display: grid;
    gap: 11px;
    list-style: none;
}

.feature-card li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.feature-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 8px;
    flex: 0 0 auto;
    border-radius: 2px;
    background: var(--blue);
}

.module-connection {
    padding: 0 0 100px;
    background: #fff;
}

.connection-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 46px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--navy);
    color: #fff;
}

.connection-box .module-kicker {
    display: block;
    margin-bottom: 12px;
    color: #7fb0ff;
}

.connection-box h2 {
    margin-bottom: 10px;
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 500;
    line-height: 1.08;
}

.connection-box p {
    max-width: 680px;
    color: #aebbd2;
    font-size: 16px;
}

.connection-links {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.connection-links a {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    color: #d8e4f7;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
}

.connection-links a:hover {
    background: #fff;
    color: var(--navy);
}

.module-faq-section {
    padding: 100px 0;
    background: #f5f7fb;
}

.module-faq-head {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.module-faq-head .module-kicker {
    display: block;
    margin-bottom: 12px;
}

.module-faq-head h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.module-faq-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.module-faq-section .faq-list {
    max-width: 880px;
    padding: 4px 30px;
    border: 1px solid var(--rule);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sh-sm);
}

.module-faq-section .faq-item:last-child {
    border-bottom: 0;
}

.module-faq-section .faq-q {
    padding: 24px 4px;
    font-size: 17px;
}

.module-faq-section .faq-a-inner {
    max-width: 760px;
    padding-bottom: 24px;
    font-size: 15.5px;
}

.module-cta-section {
    padding: 92px 0;
    background: var(--mist);
    text-align: center;
}

.module-cta-section h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.module-cta-section p {
    max-width: 600px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 17px;
}

@media (max-width: 1040px) {
    .module-hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .module-hero-copy {
        max-width: 760px;
    }

    .product-window {
        max-width: 720px;
    }

    .feature-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-box {
        grid-template-columns: 1fr;
    }

    .connection-links {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .module-hero {
        padding: 116px 0 64px;
    }

    .module-hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .module-mini-proof {
        flex-direction: column;
        gap: 8px;
    }

    .product-window {
        padding: 7px;
        border-radius: 16px;
    }

    .product-window-inner {
        min-height: 330px;
    }

    .product-content {
        padding: 14px;
    }

    .project-board {
        gap: 6px;
    }

    .board-column {
        min-height: 230px;
        padding: 7px;
    }

    .task-card {
        padding: 8px 6px;
    }

    .pipeline-row {
        grid-template-columns: 1fr auto;
    }

    .pipeline-row > span:not(.stage-chip) {
        display: none;
    }

    .esign-workspace,
    .chat-layout {
        grid-template-columns: 0.45fr 1.55fr;
    }

    .invoice-shell {
        grid-template-columns: 1fr;
    }

    .invoice-side {
        display: none;
    }

    .feature-section {
        padding: 76px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
        padding: 24px;
    }

    .feature-number {
        margin-bottom: 28px;
    }

    .module-connection {
        padding-bottom: 76px;
    }

    .module-faq-section {
        padding: 76px 0;
    }

    .module-faq-section .faq-list {
        padding: 2px 18px;
    }

    .module-faq-section .faq-q {
        padding: 21px 2px;
        font-size: 16px;
    }

    .connection-box {
        padding: 30px 24px;
    }

    .module-cta-section {
        padding: 74px 0;
    }
}

@media (max-width: 430px) {
    .module-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-window-title {
        font-size: 10px;
    }

    .product-toolbar b {
        font-size: 17px;
    }

    .fake-button {
        display: none;
    }

    .esign-sidebar,
    .chat-sidebar {
        display: none;
    }

    .esign-workspace,
    .chat-layout {
        grid-template-columns: 1fr;
    }
}
