﻿
.plan-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 32px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(76, 29, 149, 0.07);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.plan-card:hover {
    border-color: rgba(124, 58, 237, 0.28);
    box-shadow: 0 22px 54px rgba(76, 29, 149, 0.12);
    transform: translateY(-2px);
}

.plan-card.is-featured {
    border-color: rgba(124, 58, 237, 0.42);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(168, 85, 247, 0.32)) border-box;
    box-shadow: 0 24px 62px rgba(76, 29, 149, 0.14);
}

.plan-card.is-featured::before {
    content: "Recommended";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #4c1d95;
    background: #f3e8ff;
    font-size: 12px;
    font-weight: 700;
}

.plan-card-head {
    min-height: 154px;
    padding-right: 92px;
}

.plan-card:not(.is-featured) .plan-card-head {
    padding-right: 0;
}

.plan-card-for {
    margin-bottom: 14px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.plan-card-head h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 25px;
    line-height: 1.18;
}

.plan-card-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.plan-card-price {
    min-height: 70px;
    margin-top: 4px;
}

.plan-card-price strong {
    display: block;
    color: #0f172a;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1;
    font-weight: 600;
}

.plan-card-price span,
.plan-card-note {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.plan-card-price span {
    display: block;
    margin-top: 8px;
}

.plan-card-note {
    min-height: 20px;
    color: #475569;
}

.plan-card-divider {
    height: 1px;
    margin: 24px 0;
    background: #e2e8f0;
}

.plan-feature-list {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.plan-feature-list li {
    position: relative;
    padding-left: 22px;
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
}

.plan-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--public-accent);
}

.plan-card-action {
    margin-top: auto;
}

.plan-card-action .btn {
    width: 100%;
    min-height: 44px;
}

.plan-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.plan-support-grid article {
    position: relative;
    min-height: 124px;
    padding: 22px 24px 22px 26px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 12px;
    background:
        linear-gradient(180deg, #fff, #faf5ff);
    box-shadow: 0 14px 34px rgba(76, 29, 149, 0.07);
}

.plan-support-grid article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--public-brand), var(--public-accent));
}

.plan-support-grid strong {
    display: block;
    margin-bottom: 9px;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.25;
}

.plan-support-grid span {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.58;
}

.pricing-detail-section {
    padding: 0 0 84px;
    background: #fff;
}

.pricing-comparison-wrap {
    margin-bottom: 28px;
}

.pricing-detail-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.pricing-detail-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
}

.pricing-detail-head p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.pricing-comparison-table {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.pricing-comparison-table table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.pricing-comparison-table th {
    color: #0f172a;
    background: #f8fafc;
    font-weight: 700;
}

.pricing-comparison-table td:first-child {
    color: #0f172a;
    font-weight: 600;
}

.pricing-comparison-table tr:last-child td {
    border-bottom: 0;
}

.pricing-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pricing-detail-grid article {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.pricing-detail-grid h3 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.25;
}

.pricing-detail-grid ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-detail-grid li {
    position: relative;
    padding-left: 22px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-detail-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--public-accent);
}

.contact-redesign-section {
    padding: 78px 0 86px;
    background:
        linear-gradient(180deg, #fff 0%, #faf5ff 100%);
}

.contact-redesign-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 28px;
    align-items: stretch;
}

.contact-info-block {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 32px;
    border-color: rgba(124, 58, 237, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 255, 0.92));
}

.contact-info-block h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;
}

.contact-info-block p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.68;
}

.contact-method-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-method-list a,
.contact-note-panel,
.contact-form-card {
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(76, 29, 149, 0.07);
}

.contact-method-list a {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-method-list a:hover {
    border-color: rgba(124, 58, 237, 0.32);
    box-shadow: 0 18px 42px rgba(76, 29, 149, 0.1);
    transform: translateY(-1px);
}

.contact-method-list strong,
.contact-note-panel h3 {
    color: #0f172a;
    font-size: 15px;
}

.contact-method-list span {
    color: #64748b;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.contact-note-panel {
    margin-top: auto;
    padding: 18px;
    background: #fff;
}

.contact-note-panel h3 {
    margin: 0 0 8px;
}

.contact-note-panel p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.contact-form-card {
    position: relative;
    display: grid;
    gap: 16px;
    min-width: 0;
    padding: 32px;
    border-color: rgba(124, 58, 237, 0.16);
}

.contact-toast-stack {
    position: fixed;
    top: 112px;
    right: 24px;
    z-index: 1000;
    display: grid;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.contact-toast {
    position: relative;
    display: grid;
    gap: 3px;
    padding: 14px 42px 14px 16px;
    border: 1px solid #dbe4f0;
    border-left: 4px solid var(--public-brand);
    border-radius: 8px;
    color: #334155;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    pointer-events: auto;
    animation: contactToastIn 0.22s ease-out;
}

.contact-toast-success {
    border-left-color: #16a34a;
}

.contact-toast-error {
    border-left-color: #dc2626;
}

.contact-toast-warning {
    border-left-color: #d97706;
}

.contact-toast strong {
    color: #0f172a;
    font-size: 13px;
    line-height: 1.25;
}

.contact-toast span {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.contact-toast-close {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    color: #64748b;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.contact-toast-close:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.contact-toast.is-hiding {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes contactToastIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form-card label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d8d2e6;
    border-radius: 10px;
    padding: 11px 13px;
    color: #0f172a;
    background: #fff;
    font: inherit;
    transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.contact-form-card textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    outline: 0;
}

.contact-form-card .custom-requirement-box {
    border-color: rgba(124, 58, 237, 0.14);
    background: #faf5ff;
}

.contact-form-card .btn {
    width: fit-content;
    min-width: 170px;
}

.checkout-action-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.checkout-action-row form {
    margin: 0;
}

.checkout-action-row .btn {
    min-width: 190px;
}

.checkout-action-row--single {
    margin-top: 12px;
}

.checkout-status-card > p:last-of-type {
    margin-bottom: 0;
}

.calendar-card {
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(76, 29, 149, 0.07);
}

.calendar-card iframe {
    display: block;
    width: 100%;
    min-height: 520px;
    border: 0;
}

.demo-booking-stack {
    display: grid;
    gap: 16px;
}

.demo-page-section .contact-info-block,
.trial-page-section .trial-info {
    position: sticky;
    top: 112px;
    align-self: start;
}

.demo-redesign-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.demo-booking-stack .contact-form-card {
    gap: 14px;
}

.trial-section {
    padding: 78px 0 86px;
    background:
        linear-gradient(180deg, #fff 0%, #faf5ff 100%);
}

.trial-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 28px;
    align-items: stretch;
}

.trial-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 32px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 255, 0.92));
    box-shadow: 0 14px 34px rgba(76, 29, 149, 0.07);
}

.trial-info h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;
}

.trial-info p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.68;
}

.public-contact-visual {
    margin-bottom: 18px;
    border: 1px solid #d7e3f0;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.public-contact-visual img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

.public-contact-visual--compact {
    border-radius: 16px;
}

.trial-check-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.trial-check-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(76, 29, 149, 0.06);
}

.trial-check-list strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--public-brand), var(--public-brand-dark));
    font-size: 13px;
}

.trial-check-list span {
    color: #334155;
    font-size: 15px;
    font-weight: 600;
}

.trial-form-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 12px;
    background: #fff;
}

.trial-form-section > span {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    border-radius: 999px;
    color: #4c1d95;
    background: #f3e8ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.trial-consent {
    grid-template-columns: 18px 1fr;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 10px;
    background: #faf5ff;
}

.trial-consent input {
    width: 16px;
    min-height: 16px;
    margin-top: 3px;
    padding: 0;
}

.trial-consent span {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.trial-form .btn {
    width: fit-content;
    min-width: 180px;
}

.trial-wizard-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trial-wizard-steps span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.trial-wizard-steps span.is-active {
    background: linear-gradient(135deg, var(--public-brand), var(--public-brand-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.16);
}

.trial-wizard-panel { display: none; }
.trial-wizard-panel.is-active { display: grid; }

.trial-wizard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.trial-wizard-actions[hidden] {
    display: none !important;
}

.trial-wizard-actions .btn {
    width: 100%;
}

.home-cta-band {
    padding: 68px 0;
    background: #fff;
}

.home-cta-band .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.9)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.home-cta-band span {
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.home-cta-band h2 {
    max-width: 760px;
    color: #fff;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.journey-grid article {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.journey-grid article::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -18px;
    width: 18px;
    height: 1px;
    background: #cbd5e1;
}

.journey-grid article:last-child::after {
    display: none;
}

.journey-grid strong {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #111827;
    font-size: 13px;
}

.journey-grid h3 {
    margin: 18px 0 10px;
    color: #0f172a;
    font-size: 19px;
}

.journey-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.68;
}

.journey-grid a {
    margin-top: auto;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .home-hero-grid,
    .pricing-intro-grid,
    .home-feature-grid,
    .home-pricing-grid,
    .plan-board,
    .plan-support-grid,
    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-grid article::after {
        display: none;
    }

    .home-preview {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .home-hero {
        padding: 66px 0;
    }

    .home-hero-grid,
    .pricing-intro-grid,
    .pricing-detail-grid,
    .contact-redesign-grid,
    .trial-grid,
    .home-feature-grid,
    .home-pricing-grid,
    .plan-board,
    .plan-support-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .plan-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-counter-grid article:nth-child(3) {
        border-left: 0;
    }

    .home-counter-grid article:nth-child(n + 3) {
        border-top: 1px solid #e2e8f0;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .contact-redesign-grid {
        gap: 18px;
    }

    .demo-page-section .contact-info-block,
    .trial-page-section .trial-info {
        position: static;
    }

    .contact-info-block,
    .contact-form-card,
    .trial-info {
        padding: 26px;
    }

    .contact-note-panel {
        margin-top: 18px;
    }

    .home-cta-band .shell {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

}

@media (max-width: 560px) {
    .home-hero h1 {
        font-size: 34px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero-actions,
    .preview-metrics,
    .preview-flow,
    .preview-table div {
        grid-template-columns: 1fr;
    }

    .home-hero-actions .btn {
        width: 100%;
    }

    .home-section {
        padding: 64px 0;
    }

    .home-section-head h2,
    .home-cta-band h2 {
        font-size: 30px;
    }

    .plan-card {
        padding: 24px;
    }

    .plan-card.is-featured::before {
        position: static;
        display: inline-flex;
        width: fit-content;
        margin-bottom: 16px;
    }

    .plan-card-head,
    .plan-card:not(.is-featured) .plan-card-head {
        min-height: 0;
        padding-right: 0;
    }

    .plan-support-grid article {
        padding: 20px;
    }

    .plan-support-grid {
        gap: 12px;
    }

    .pricing-intro-section {
        padding: 58px 0;
    }

    .pricing-intro-panel article,
    .pricing-detail-grid article,
    .contact-form-card {
        padding: 22px;
    }

    .contact-info-block,
    .trial-info {
        padding: 22px;
    }

    .contact-redesign-section {
        padding: 62px 0;
    }

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

    .contact-toast-stack {
        top: 86px;
        right: 16px;
    }

    .contact-form-card .btn {
        width: 100%;
    }

    .trial-form-section {
        padding: 16px;
    }

    .trial-wizard-steps,
    .trial-wizard-actions {
        grid-template-columns: 1fr;
    }

    .trial-form .btn {
        width: 100%;
    }

    .calendar-card,
    .calendar-card iframe {
        min-height: 460px;
    }
}

/* Centralized public pages */
.public-hero {
    padding: 72px 0 74px;
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.92)),
        url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #e2e8f0;
}

.public-hero-compact {
    padding: 62px 0 62px;
}

.public-breadcrumb-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 54px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(38, 8, 95, 0.95), rgba(76, 29, 149, 0.9)),
        url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.public-breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(19, 7, 31, 0.08), rgba(19, 7, 31, 0.22));
    pointer-events: none;
}

.public-breadcrumb-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 42px;
    background: #fff;
    clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.public-breadcrumb-inner {
    position: relative;
    z-index: 1;
    min-height: 126px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}

.public-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 500;
}

.public-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
}

.public-breadcrumb a:hover {
    color: #fff;
}

.public-breadcrumb span:last-child {
    color: #fff;
}

.public-breadcrumb-inner h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.06;
    font-weight: 600;
}

.public-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.public-kicker,
.public-section-head span,
.public-cta-inner span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: var(--public-brand-dark);
    background: var(--public-accent-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.public-hero h1,
.public-split h2,
.public-info-panel h2,
.public-cta-inner h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.06;
    font-weight: 700;
}

.public-hero p,
.public-section-head p,
.public-split p,
.public-copy-block p,
.public-info-panel p {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.public-hero p {
    max-width: 680px;
    font-size: 18px;
}

.public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.public-proof-panel,
.public-info-panel,
.public-form-card,
.public-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.public-proof-panel {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.public-proof-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.public-proof-row span,
.public-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.public-proof-row strong {
    color: #0f172a;
    font-size: 14px;
    text-align: right;
}

.public-section {
    padding: 84px 0;
    background: #fff;
}

.public-section-soft {
    background: #f8fafc;
}

.public-section-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.public-section-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.public-card-grid {
    display: grid;
    gap: 18px;
}

.public-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-belief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-belief-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border-radius: 16px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.26), rgba(15, 23, 42, 0.86)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.about-belief-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(76, 29, 149, 0.22), rgba(15, 23, 42, 0.86)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.about-belief-card span {
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-belief-card h2 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    font-weight: 600;
}

.about-belief-card p {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.72;
}

.public-card {
    padding: 26px;
}

.public-card h3 {
    margin: 12px 0 10px;
    color: #0f172a;
    font-size: 20px;
}

.public-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.public-feature-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.public-feature-matrix article {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.public-feature-matrix article:nth-child(3n) {
    border-right: 0;
}

.public-feature-matrix article:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.public-feature-matrix span,
.public-role-grid strong,
.policy-card span {
    color: #4c1d95;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.public-feature-matrix h3 {
    margin: 12px 0 10px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.24;
    font-weight: 600;
}

.public-feature-matrix p,
.public-role-grid span,
.public-demo-note span,
.public-contact-strip a,
.policy-side p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.public-role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.public-role-grid article {
    display: grid;
    gap: 7px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.public-demo-note,
.public-contact-strip {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.public-demo-note strong {
    color: #0f172a;
}

.public-contact-strip a {
    color: #4c1d95;
    font-weight: 600;
}

.public-journey-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.public-journey-line article {
    padding: 28px;
    border-left: 1px solid #e2e8f0;
}

.public-journey-line article:first-child {
    border-left: 0;
}

.public-journey-line strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #111827;
    font-size: 13px;
}

.public-journey-line h3 {
    margin: 18px 0 8px;
    color: #0f172a;
    font-size: 20px;
}

.public-journey-line p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.public-split,
.public-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: start;
}

.public-split h2,
.public-info-panel h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.public-copy-block {
    padding: 4px 0;
}

.public-copy-block p:first-child {
    margin-top: 0;
}

.public-step-list {
    display: grid;
    gap: 12px;
}

.public-step-list.compact {
    margin-top: 22px;
}

.public-step-list div {
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.public-step-list strong,
.public-step-list span {
    display: block;
}

.public-step-list strong {
    color: #0f172a;
}

.public-step-list span {
    margin-top: 4px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.public-info-panel {
    padding: 30px;
}

.public-form-card {
    padding: 30px;
}

.public-form-card .btn {
    width: fit-content;
}

.public-cta {
    padding: 68px 0;
    background: #fff;
}

.public-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px;
    border-radius: 16px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.9)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.public-cta-inner span {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.public-cta-inner h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
}

@media (max-width: 960px) {
    .public-hero-grid,
    .public-feature-matrix,
    .public-card-grid-3,
    .about-belief-grid,
    .public-role-grid,
    .public-journey-line,
    .public-error-grid,
    .public-split,
    .public-form-layout {
        grid-template-columns: 1fr;
    }

    .public-feature-matrix article,
    .public-feature-matrix article:nth-child(3n),
    .public-feature-matrix article:nth-last-child(-n + 3) {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .public-feature-matrix article:last-child {
        border-bottom: 0;
    }

    .public-journey-line article {
        border-left: 0;
        border-top: 1px solid #e2e8f0;
    }

    .public-journey-line article:first-child {
        border-top: 0;
    }

    .policy-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .public-hero {
        padding: 60px 0 52px;
    }

    .public-breadcrumb-hero {
        padding: 48px 0 42px;
    }

    .public-breadcrumb-inner {
        min-height: 104px;
    }

    .public-hero h1 {
        font-size: 34px;
    }

    .public-section {
        padding: 62px 0;
    }

    .public-actions,
    .public-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-actions .btn,
    .public-form-card .btn {
        width: 100%;
    }

    .public-proof-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-proof-row strong {
        text-align: left;
    }

    .public-cta-inner {
        padding: 28px;
    }

    .public-feature-matrix article,
    .public-error-panel {
        padding: 24px;
    }

    .checkout-status-meta {
        grid-template-columns: 1fr;
    }

    .home-counter-grid {
        grid-template-columns: 1fr;
    }

    .home-counter-grid article + article,
    .home-counter-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #e2e8f0;
    }

    .about-belief-card {
        min-height: 300px;
        padding: 28px;
    }
}

/* Softer visual weight pass */
.btn,
.nav-links a,
.nav-login,
.billing-toggle a,
.home-trust span,
.home-strip span,
.home-strip strong,
.public-kicker,
.home-kicker,
.home-section-head span,
.public-section-head span,
.public-cta-inner span {
    font-weight: 500;
}

.home-hero h1,
.home-section-head h2,
.home-cta-band h2,
.public-hero h1,
.public-split h2,
.public-info-panel h2,
.public-cta-inner h2,
.public-section-head h2,
.page-hero h1,
.section-head h2,
.split-section h2,
.about-grid h2,
.cta-inner h2 {
    font-weight: 600;
}

.home-feature-grid h3,
.home-price-card h3,
.journey-grid h3,
.public-card h3,
.mission-card h3,
.values-grid h3,
.module-showcase h2,
.policy-card h3,
.contact-panel h2,
.checkout-summary h1,
.checkout-status-card h1 {
    font-weight: 580;
}

.preview-header strong,
.preview-metrics strong,
.preview-flow strong,
.preview-table em,
.home-counter-grid strong,
.home-price strong,
.public-proof-row strong,
.public-step-list strong,
.footer-col h4,
.pricing-amount,
.checkout-price strong {
    font-weight: 600;
}

.preview-metrics small,
.preview-flow span,
.home-price-card li,
.public-card span,
.public-proof-row span,
.public-form label,
.checkout-form label,
.public-form input,
.public-form textarea,
.public-form select {
    font-weight: 500;
}

.preview-window,
.home-feature-grid article,
.home-price-card,
.journey-grid article,
.public-proof-panel,
.public-info-panel,
.public-form-card,
.public-card {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.home-price-card.featured {
    box-shadow: 0 22px 52px rgba(76, 29, 149, 0.16);
}

/* Minimal rebuilt public pages */
.public-breadcrumb-bar {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.public-breadcrumb-bar .public-breadcrumb-inner {
    min-height: 0;
    display: block;
    text-align: left;
}

.public-breadcrumb-bar .public-breadcrumb {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #64748b;
    background: transparent;
    backdrop-filter: none;
}

.public-breadcrumb-bar .public-breadcrumb a,
.public-breadcrumb-bar .public-breadcrumb span:last-child {
    color: #334155;
}

.public-page {
    padding: 56px 0 72px;
    background: #fff;
}

.public-simple {
    display: grid;
    gap: 28px;
}

.public-title {
    max-width: 760px;
}

.public-title span,
.public-info-panel .public-kicker {
    margin-bottom: 10px;
    color: #4c1d95;
    background: #f3e8ff;
    border-color: #eadcff;
}

.public-title h1,
.public-info-panel h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 600;
}

.public-title p,
.public-info-panel p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.public-page .public-form-layout {
    align-items: start;
}

.public-page .public-card,
.public-page .public-info-panel,
.public-page .public-form-card,
.public-page .policy-card,
.public-page .policy-side {
    box-shadow: none;
}

.public-page .public-feature-matrix article {
    min-height: 190px;
}

.feature-breadcrumb-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 74px;
    border-bottom: 1px solid #eef2f7;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
        #f8fafc;
}

.feature-breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.055), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(20, 184, 166, 0.045), transparent 26%);
    pointer-events: none;
}

.feature-breadcrumb-section .shell {
    position: relative;
    z-index: 1;
}

.feature-breadcrumb-section .feature-crumb {
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-page-title {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.feature-page-title h1 {
    position: relative;
    margin: 0;
    padding-bottom: 18px;
    color: #0f172a;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.06;
    font-weight: 700;
}

.feature-page-title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    border-radius: 999px;
    background: #7c3aed;
    transform: translateX(-50%);
}

.feature-page-title p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.72;
}

.feature-section-tight {
    padding: 70px 0;
}

.feature-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    gap: 52px;
    align-items: center;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 52px;
    align-items: center;
}

.feature-intro-grid h2,
.about-intro-grid h2,
.feature-flow-copy h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 700;
}

.feature-intro-grid p,
.about-intro-grid p,
.feature-flow-copy p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.72;
}

.feature-intro-panel {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.about-intro-panel {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.feature-intro-panel article {
    display: grid;
    gap: 6px;
    padding: 22px 24px;
}

.about-intro-panel article {
    display: grid;
    gap: 6px;
    padding: 22px 24px;
}

.feature-intro-panel article + article {
    border-top: 1px solid #e2e8f0;
}

.about-intro-panel article + article {
    border-top: 1px solid #e2e8f0;
}

.feature-intro-panel strong {
    color: #0f172a;
    font-size: 18px;
}

.about-intro-panel strong {
    color: #0f172a;
    font-size: 18px;
}

.feature-intro-panel span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.about-intro-panel span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-value-grid article {
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.about-value-grid article:hover {
    border-color: #cbd5e1;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.about-value-grid h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.about-value-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.about-story-section {
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.about-story-copy h2,
.about-section-title h2,
.about-method-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
}

.about-story-copy p,
.about-section-title p,
.about-method-card p {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.72;
}

.about-snapshot {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.about-snapshot div {
    padding: 24px 26px;
}

.about-snapshot div + div {
    border-top: 1px solid #e2e8f0;
}

.about-snapshot strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 17px;
}

.about-snapshot span {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.about-principles-layout,
.about-fit-grid {
    display: grid;
    gap: 38px;
}

.about-section-title {
    max-width: 760px;
}

.about-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-principle-grid article,
.about-method-list article,
.about-fit-cards article {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.about-principle-grid article {
    padding: 26px;
}

.about-principle-grid span {
    display: block;
    margin-bottom: 26px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

.about-principle-grid h3,
.about-method-list h3,
.about-fit-cards h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.about-principle-grid p,
.about-method-list p,
.about-fit-cards p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.about-method-section {
    background: #fff;
}

.about-method-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.about-method-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(46, 16, 101, 0.92), rgba(88, 28, 135, 0.86)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 70px rgba(46, 16, 101, 0.18);
}

.about-method-card h2,
.about-method-card p {
    color: #fff;
}

.about-method-card p {
    color: rgba(255, 255, 255, 0.82);
}

.about-method-list {
    display: grid;
    gap: 16px;
}

.about-method-list article {
    padding: 28px;
}

.about-fit-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
}

.about-fit-cards {
    display: grid;
    gap: 16px;
}

.about-fit-cards article {
    padding: 26px;
}

.feature-clean-head span {
    display: none;
}

.feature-clean-head {
    margin-bottom: 38px;
}

.feature-topbar {
    padding: 38px 0 34px;
    border-bottom: 1px solid #e2e8f0;
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(239, 246, 255, 0.9)),
        #fff;
}

.feature-topbar-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.feature-crumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #64748b;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
}

.feature-crumb a {
    color: #334155;
}

.feature-crumb a:hover {
    color: #0f172a;
}

.feature-crumb span[aria-hidden="true"] {
    color: #94a3b8;
}

.feature-crumb span[aria-current="page"] {
    color: #0f172a;
    font-weight: 600;
}

.feature-topbar h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 600;
}

.feature-topbar p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
}

.feature-topbar-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 440px;
}

.feature-topbar-tags span {
    padding: 8px 12px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 999px;
    color: #4c1d95;
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.feature-summary {
    padding: 0;
    background: #fff;
}

.feature-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid #e2e8f0;
}

.feature-summary-grid article {
    padding: 26px 24px;
    text-align: center;
}

.feature-summary-grid article + article {
    border-left: 1px solid #e2e8f0;
}

.feature-summary-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1;
    font-weight: 700;
}

.feature-summary-grid span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.feature-module-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.feature-module-grid article:hover,
.feature-role-grid article:hover {
    border-color: #cbd5e1;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.feature-module-grid article > div > span {
    color: #4c1d95;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-module-grid h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.feature-module-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.feature-module-grid ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-module-grid li {
    position: relative;
    padding-left: 20px;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 560;
}

.feature-module-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--public-accent);
}

.feature-flow-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 52px;
    align-items: start;
}

.feature-flow-copy {
    position: sticky;
    top: 110px;
}

.feature-flow-list {
    display: grid;
    gap: 14px;
}

.feature-flow-list article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.feature-flow-list strong {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: #0f172a;
    background: #f1f5f9;
    font-size: 14px;
}

.feature-flow-list h3,
.feature-role-grid h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.feature-flow-list p,
.feature-role-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

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

.feature-role-grid article {
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.feature-control-section {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.feature-control-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.feature-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: var(--public-brand-dark);
    background: var(--public-accent-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-control-grid h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 700;
}

.feature-control-grid > div > p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.72;
}

.feature-control-list {
    display: grid;
    gap: 14px;
}

.feature-control-list article,
.feature-check-grid article {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.feature-control-list article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
}

.feature-control-list strong {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: var(--public-brand-dark);
    background: var(--public-accent-soft);
    font-size: 14px;
}

.feature-control-list h3,
.feature-check-grid h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.feature-control-list p,
.feature-check-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.feature-check-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-check-grid article {
    padding: 24px;
}

@media (max-width: 820px) {
    .about-story-grid,
    .about-method-grid,
    .about-fit-grid {
        grid-template-columns: 1fr;
    }

    .about-principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-intro-grid,
    .about-intro-grid,
    .feature-flow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-flow-copy {
        position: static;
    }

    .feature-role-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .feature-topbar-tags {
        justify-content: flex-start;
        max-width: none;
    }

    .feature-summary-grid,
    .feature-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-summary-grid article:nth-child(3) {
        border-left: 0;
    }

    .feature-summary-grid article:nth-child(n + 3) {
        border-top: 1px solid #e2e8f0;
    }

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

    .feature-control-grid {
        gap: 30px;
    }
}

@media (max-width: 560px) {
    .feature-breadcrumb-section {
        padding: 56px 0 60px;
    }

    .feature-page-title h1 {
        font-size: 34px;
    }

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

    .feature-intro-panel article,
    .about-intro-panel article,
    .about-value-grid article,
    .about-principle-grid article,
    .about-method-list article,
    .about-fit-cards article,
    .feature-role-grid article {
        padding: 22px;
    }

    .about-method-card {
        min-height: 320px;
        padding: 26px;
    }

    .feature-topbar {
        padding: 28px 0 26px;
    }

    .feature-crumb {
        max-width: 100%;
    }

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

    .feature-summary-grid article + article,
    .feature-summary-grid article:nth-child(n + 3) {
        border-top: 1px solid #e2e8f0;
        border-left: 0;
    }

    .feature-module-grid article {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .feature-flow-list article,
    .feature-control-list article {
        grid-template-columns: 1fr;
    }

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

    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .about-principle-grid {
        grid-template-columns: 1fr;
    }
}

/* Public header and footer redesign */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.header-shell {
    min-height: 96px;
    gap: 24px;
}

.brand-logo {
    width: 178px;
    height: 70px;
}

.nav-links {
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.nav-links a {
    padding: 12px 16px;
    border-radius: 0;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2e1065;
    background: transparent;
    box-shadow: none;
}

.nav-links a.active::after {
    display: block;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    background: #7c3aed;
}

.nav-login {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
}

.nav-actions .btn {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 15px;
}

.site-footer {
    padding: 56px 0 28px;
    background:
        linear-gradient(135deg, rgba(8, 13, 26, 0.98), rgba(20, 19, 43, 0.98)),
        radial-gradient(circle at 82% 8%, rgba(124, 58, 237, 0.2), transparent 34%);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 44px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-top span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-top h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 600;
}

.footer-grid {
    grid-template-columns: minmax(320px, 1.5fr) repeat(4, minmax(145px, 1fr));
    gap: 34px;
}

.footer-logo {
    width: 188px;
    height: 82px;
}

.footer-main p {
    max-width: 410px;
    font-size: 16px;
    line-height: 1.75;
}

.footer-contact {
    gap: 10px;
}

.footer-contact span {
    font-size: 13px;
}

.footer-contact a,
.footer-col a {
    color: rgba(226, 232, 240, 0.82);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.footer-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
}

.footer-col {
    gap: 12px;
}

.footer-col h4 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom {
    padding-top: 24px;
    font-size: 14px;
}

@media (max-width: 920px) {
    .header-shell {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 16px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .brand {
        max-width: none;
    }

    .brand-logo {
        width: 156px;
        height: 62px;
    }

    .nav-links a {
        padding: 11px 14px;
        font-size: 14px;
    }

    .footer-top {
        padding: 24px;
    }

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


