
:root {
    --primary: #4c69ff;
    --secondary-bg: #f5f7ff;
    --white: #fff;
    --dark: #212529;
    --gray: rgb(75, 85, 99);
    --light-gray: rgb(156, 163, 175);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: var(--secondary-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E3E5E8;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-bottom: 2px solid transparent;
}

@media (min-width: 992px) {
    .navbar-collapse {
        align-items: center;
    }

    .navbar-nav {
        flex: 1;
        justify-content: center;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    border-bottom-color: #c7d2fe;
}

.navbar-nav .nav-link.active {
    color: #4C5CF0;
    border-bottom-color: #4C5CF0;
    font-weight: 600;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 4px;
}

.btn-primary-compact {
    padding: 8px 16px;
    font-weight: 600;
    white-space: nowrap;
}

.marketing-auth-actions {
    gap: 16px !important;
    flex-wrap: nowrap;
}

.marketing-login-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.marketing-login-link:hover,
.marketing-login-link:focus {
    color: var(--primary);
    text-decoration: none;
}



.marketing-lang-switch {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--primary);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.marketing-lang-switch .btn {
    min-width: 42px;
    padding: 8px 11px;
    border: 0;
    border-radius: 0;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.marketing-lang-switch .btn.btn-outline-primary {
    color: var(--primary);
    background: #fff;
}

.marketing-lang-switch .btn.btn-primary {
    background: var(--primary);
    color: white;
}

.marketing-lang-switch .btn + .btn {
    border-left: 1px solid var(--primary);
}

.marketing-lang-switch .btn:hover,
.marketing-lang-switch .btn:focus {
    box-shadow: none;
    opacity: 1;
}

.btn-primary-custom:hover {
    background-color: #3a54e5;
    border-color: #3a54e5;
    color: white;
}

.btn-white-custom {
    background-color: white;
    border-color: white;
    color: var(--primary);
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 4px;
}

.btn-white-custom:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--primary);
}

.hero-section {
    padding: 70px 0;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--gray);
    margin-bottom: 40px;
}

.preview-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(1.25deg);
    transition: transform 0.3s ease;
    position: relative;
}

.preview-card:hover {
    transform: rotate(0deg);
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.form-preview input {
    background-color: rgb(239, 246, 255) !important;
    border-color: rgb(191, 219, 254) !important;
    pointer-events: none;
}

.doc-preview {
    padding: 12px;
    background-color: rgb(249, 250, 251);
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.doc-preview .subtitle {
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.doc-preview p {
    margin-bottom: 10px;
}

.doc-preview p span {
    color: var(--primary);
    font-weight: 500;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    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);
    color: var(--primary);
    text-decoration: none;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.perks-section {
    padding: 70px 0;
    background-color: white;
}

.perk-card {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 20px;
}

.perk-card:hover {
    transform: translateY(-5px);
}

.perk-icon {
    width: 67px;
    height: 67px;
    border-radius: 16px;
    background-color: rgb(239, 246, 255);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.perk-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.perk-card p {
    color: var(--gray);
    line-height: 1.5;
}

.features-section {
    padding: 120px 0;
    background-color: var(--primary);
    color: white;
}

.features-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.features-section p {
    font-size: 18px;
    line-height: 1.625;
    margin-bottom: 30px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.styled-list li span {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(34, 197, 94);
    flex-shrink: 0;
    margin-top: 4px;
}

.styled-list li span::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: -2px;
}

.comparison-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    color: var(--gray);
}

.comparison-title {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
}

.comparison-card .subtitle {
    text-align: center;
}

.comparison-col {
    padding: 16px;
    border-radius: 8px;
    text-align: left;
}

.comparison-col.before {
    background-color: rgb(254, 242, 242);
    border: 1px solid rgb(254, 202, 202);
}

.comparison-col.after {
    background-color: rgb(240, 253, 244);
    border: 1px solid rgb(187, 247, 208);
}

.comparison-col .subtitle {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.comparison-col.before .subtitle {
    color: rgb(220, 38, 38);
}

.comparison-col.after .subtitle {
    color: rgb(22, 163, 74);
}

.comparison-col ul {
    padding-left: 1.1rem;
    margin: 0;
    list-style-type: disc;
}

.comparison-col li {
    margin-bottom: 8px;
}

.instructions-section {
    padding: 70px 0;
    background-color: rgb(249, 250, 251);
}

.instruction-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    position: relative;
    height: 100%;
}

.instruction-card:before {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 2;
    background-color: #dbe7ff;
    color: rgba(39, 70, 144, 0.78);
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.instruction-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.instruction-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instruction-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.marketing-step-card-featured {
    border: 1px solid rgba(39, 70, 144, 0.16);
    box-shadow: 0 16px 32px rgba(39, 70, 144, 0.12), 0 6px 14px rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.marketing-step-card-featured .instruction-icon {
    color: #1d4ed8;
}

.how-cta-wrapper {
    margin-top: 48px;
    text-align: center;
}

.cta-section {
    padding: 70px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inline-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inline-list li::before {
    content: "вњ“";
    font-family: 'icomoon' !important;
    color: rgb(74, 222, 128);
}

.badge-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-list li {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.inline-list--cta i {
    color: #22c55e;
    font-size: 18px;
}

.inline-list--cta li::before {
    content: none;
}

.cta-section .btn-white-custom {
    padding: 12px 24px;
    border-radius: 6px;
}

.cta-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 28px auto 22px;
    max-width: 760px;
}

.badge-list li {
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    font-size: 14px;
}

footer {
    padding: 50px 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    color: var(--light-gray);
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

footer h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.social-links a {
    font-size: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.contact-info li {
    display: flex;
    gap: 18px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #737B8C;
    padding-top: 3px;
}

.footer-copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-copyright {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px;
    }
    
    .cta-section h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .preview-card {
        margin-top: 40px;
    }
    
    .arrow-btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 12px;
    }

    .navbar-nav {
        gap: 0 !important;
        margin-top: 6px;
        margin-bottom: 8px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
    }

    .navbar-collapse .d-flex {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px !important;
        margin-top: 6px;
    }

    .navbar-collapse .btn-group {
        margin-right: 6px;
    }

    .navbar-collapse .marketing-auth-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-collapse .btn-primary-custom {
        margin-left: auto;
    }

    .features-section {
        padding: 70px 0;
    }

    .preview-card {
        margin-top: 24px;
        transform: rotate(0deg);
    }

    .hero-section .btn-primary-custom {
        margin-bottom: 16px;
    }
}

.counter-container {
    counter-reset: step-counter;
}

.pricing-hero {
    padding: 0;
    background-color: white;
}

/* в”Ђв”Ђ Pricing hero dark banner в”Ђв”Ђ */
.pricing-hero-banner {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 76px;
    background-color: #f1f5f9;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 48C120 34 240 30 360 36C480 42 600 58 720 56C840 54 960 34 1080 40C1200 46 1320 62 1440 52V120H0Z'/%3E%3C/svg%3E");
    -webkit-mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 48C120 34 240 30 360 36C480 42 600 58 720 56C840 54 960 34 1080 40C1200 46 1320 62 1440 52V120H0Z'/%3E%3C/svg%3E");
    mask-position: center bottom;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pricing-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pricing-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    line-height: 1.65;
}


.pricing-vat-note {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.pricing-toggle-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.18s ease, font-weight 0.18s ease;
}

.pricing-page .pricing-toggle-label--monthly {
    color: #ffffff;
    font-weight: 700;
}

.pricing-page.is-yearly .pricing-toggle-label--monthly {
    color: rgba(255, 255, 255, 0.52);
    font-weight: 600;
}

.pricing-page.is-yearly .pricing-toggle-label--yearly {
    color: #ffffff;
    font-weight: 700;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.25);
    transition: 0.2s;
    border-radius: 999px;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pricing-switch input:checked + .pricing-slider {
    background-color: var(--primary);
}

.pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(22px);
}

.pricing-save-badge {
    background-color: #4ade80;
    color: #14532d;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* в”Ђв”Ђ Cards area в”Ђв”Ђ */
.pricing-cards-area {
    background: #f1f5f9;
    padding: 0 0 60px;
}

.pricing-grid {
    margin-top: 0;
    padding-top: 26px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    border: 1px solid #e8edf6;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.pricing-card-eyebrow--featured {
    color: #6366f1;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
    line-height: 1.3;
}

.pricing-card-featured {
    border: 2px solid #818cf8;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.14), 0 1px 4px rgba(99, 102, 241, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.pricing-desc {
    display: none;
}

/* Volume / exports box */
.pricing-volume {
    padding: 14px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf6;
    margin: 16px 0;
    text-align: center;
}

.pricing-volume--featured {
    background: #eef2ff;
    border-color: #c7d2fe;
}

.pricing-volume-value {
    color: #0f172a;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.pricing-volume-count {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-volume-label {
    font-weight: 600;
}

.pricing-volume-helper {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}

/* Price */
.pricing-price-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 4px 0 16px;
    min-height: 90px;
    padding-top: 8px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100%;
}

/* Savings */
.pricing-savings-row {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.pricing-page.is-yearly .pricing-savings-row {
    visibility: visible;
    opacity: 1;
}

.pricing-savings-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    border-radius: 999px;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* CTA button */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pricing-btn.btn-outline-secondary {
    border-color: #cbd5e1;
    color: #334155;
    background: #ffffff;
}

.pricing-btn.btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.pricing-btn-featured {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.pricing-btn-featured:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
}

/* Feature list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px;
    flex: 1 1 auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
}

.pricing-features i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    flex-shrink: 0;
}

.pricing-features li.pricing-feature-disabled {
    color: #94a3b8;
}

.pricing-features li.pricing-feature-disabled i {
    background: #f1f5f9;
    color: #94a3b8;
}

.pricing-divider {
    display: none;
}

.pricing-enterprise {
    margin: 0 0 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    color: white;
    padding: 48px 40px;
    border-radius: 18px;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
    gap: 40px 44px;
}

.pricing-enterprise-body {
    min-width: 0;
}

.pricing-enterprise-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.pricing-enterprise h2 {
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-enterprise p {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.pricing-enterprise-action {
    margin-top: 28px;
}

.pricing-enterprise-perks {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pricing-enterprise-perk-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-enterprise-perk-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
}

.pricing-enterprise-perk-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-enterprise-perk-icon--blue {
    background: rgba(99, 102, 241, 0.22);
    color: #a5b4fc;
}

.pricing-enterprise-perk-icon--violet {
    background: rgba(139, 92, 246, 0.22);
    color: #c4b5fd;
}

.pricing-enterprise-perk-icon--amber {
    background: rgba(245, 158, 11, 0.22);
    color: #fcd34d;
}

.pricing-enterprise-perk-icon--green {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.pricing-faq-band {
    padding: 44px 0 72px;
    background: #f1f5f9;
}

.pricing-faq-section {
    max-width: 940px;
    margin: 0 auto;
    padding: 42px 32px 34px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    border: 1px solid #dbe7f8;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.pricing-faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
}

.pricing-faq-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-faq-header p {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-faq-accordion {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-faq-accordion .accordion-item {
    border: 1px solid #e1e9f7;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.pricing-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.pricing-faq-accordion .accordion-button {
    padding: 17px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    box-shadow: none;
}

.pricing-faq-accordion .accordion-button:not(.collapsed) {
    color: #0f172a;
    background: #f8fbff;
    box-shadow: none;
}

.pricing-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.pricing-faq-accordion .accordion-body {
    padding: 0 22px 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    background: #f8fbff;
    border-top: 1px solid #e5ebf7;
}

.pricing-risk-note {
    margin: 16px 0 40px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-price .price-amount {
    display: inline-flex;
    justify-content: center;
}

.pricing-price .show-yearly {
    display: none;
}

.pricing-page.is-yearly .pricing-price .show-yearly {
    display: inline-flex;
}

.pricing-page.is-yearly .pricing-price .show-monthly {
    display: none;
}

@media (max-width: 992px) {
    .pricing-header h1 {
        font-size: 40px;
    }

    .pricing-price {
        font-size: 42px;
    }

    .pricing-badge {
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
    }

    .pricing-faq-header h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .pricing-enterprise {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .pricing-enterprise-action {
        align-self: flex-start;
        margin-top: 22px;
    }

    .pricing-enterprise-perks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-hero-banner {
        padding: 60px 0 80px;
    }

    .pricing-header h1 {
        font-size: 34px;
    }

    .pricing-faq-band {
        padding: 32px 0 56px;
    }

    .pricing-faq-section {
        padding: 30px 18px 24px;
        border-radius: 20px;
    }
}

/* в”Ђв”Ђ Contact page в”Ђв”Ђ */
.contact-page {
    padding: 70px 0 90px;
    background-color: #f1f5f9;
}

/* Hero */
.contact-hero {
    min-height: auto;
    padding: 92px 0 76px;
}

.contact-hero .contact-hero-title {
    color: white;
    max-width: none;
}

.contact-hero .contact-hero-subtitle {
    color: #94a3b8;
    max-width: 480px;
}

/* Hero row */
.contact-hero-row {
    margin-bottom: 0;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 540px;
}

.contact-hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 480px;
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-channel-icon--email,
.contact-channel-icon--phone {
    background: rgba(99, 102, 241, 0.2);
    color: #8ea2ff;
}

.contact-channel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-channel-label {
    font-weight: 700;
    font-size: 15px;
    color: white;
}

.contact-channel-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.52);
}

.contact-channel-arrow {
    color: rgba(255,255,255,0.38);
    font-size: 14px;
}

.contact-hero-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 22px 22px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-hero-panel__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.contact-hero-panel__row + .contact-hero-panel__row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-panel__row:hover {
    color: white;
    opacity: 0.96;
    transform: translateY(-1px);
}

.contact-hero-panel__footer {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.contact-messenger-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.22);
    color: white;
    transform: translateY(-2px);
}

.contact-messenger-btn--panel {
    min-width: 136px;
    justify-content: center;
}

.contact-messenger-icon--viber { color: #a78bfa; }
.contact-messenger-icon--whatsapp { color: #4ade80; }

@media (max-width: 992px) {
    .contact-hero {
        padding: 82px 0 66px;
    }

    .contact-hero .contact-hero-subtitle,
    .contact-hero-title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 74px 0 56px;
    }

    .contact-hero-title {
        font-size: 36px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .contact-hero-panel {
        padding: 18px 18px 0;
    }

    .contact-hero-panel__row {
        gap: 12px;
        padding: 16px 0;
    }

    .contact-hero-panel__footer {
        gap: 10px;
        padding: 16px 0 18px;
    }

    .contact-messenger-btn--panel {
        min-width: 0;
        flex: 1 1 140px;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* Form row */
.contact-form-row {
    align-items: flex-start;
}

.contact-form-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card h2 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.contact-form-card__sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 22px;
}

.contact-form-card .form-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 8px;
    border-color: #e2e8f0;
    padding: 10px 14px;
    font-size: 15px;
    color: #0f172a;
    background-color: #ffffff;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #4c69ff;
    box-shadow: 0 0 0 3px rgba(76, 105, 255, 0.12);
}

/* Direct contact card (dark) */
.contact-direct-card {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    margin-bottom: 16px;
}

.contact-direct-card__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}

.contact-direct-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-direct-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.contact-direct-link:hover {
    background: rgba(255,255,255,0.14);
    color: white;
}

.contact-direct-link i {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
}

/* Response hint card */
.contact-response-hint-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}

.contact-response-hint-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #e0e7ff;
    color: #6366f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-response-hint-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.contact-response-hint-card__sub {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.contact-response-hint-card--dark {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    border: none;
    color: white;
}

.contact-response-hint-card__icon--dark {
    background: rgba(255,255,255,0.1);
    color: #a5b4fc;
}

.contact-response-hint-card__title--dark {
    color: white;
}

.contact-response-hint-card__sub--dark {
    color: rgba(255,255,255,0.72);
}

/* Expect card */
.contact-expect-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
}

.contact-expect-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 14px;
}

.contact-expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-expect-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
}

.contact-expect-list__num {
    font-size: 12px;
    font-weight: 700;
    color: #4c69ff;
    min-width: 22px;
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero {
        padding: 56px 0 52px;
    }


    .contact-form-card {
        padding: 24px;
    }
}


.marketing-nav-gap {
    gap: 1rem;
}

.marketing-section {
    padding: 88px 0;
}

.section-surface-white {
    background: #ffffff;
}

.section-surface-soft {
    background: #f8fafc;
}

.section-surface-dark {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    color: white;
}

.homepage-hero {
    padding: 82px 0 96px;
    overflow: hidden;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e8eeff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.section-eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.hero-lead,
.section-copy {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
}

.section-title-left {
    text-align: left;
}

.section-title-left p {
    margin-left: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0 22px;
}


.landing-hero-trial-hint {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}
.hero-secondary-btn {
    padding: 11px 20px;
    border-radius: 4px;
    font-weight: 700;
}

.hero-inline-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #334155;
    font-size: 14px;
}

.hero-inline-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-inline-points i {
    color: #16a34a;
}

.homepage-hero-mockup {
    position: relative;
    min-height: 620px;
    overflow: visible;
}

.product-screenshot-placeholder,
.library-screenshot-placeholder {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #edf2f7;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.screenshot-card {
    position: absolute;
    padding: 22px;
}

.screenshot-card--form {
    inset: 14px 214px 212px 0;
    z-index: 1;
}

.screenshot-card--files {
    top: 286px;
    right: 0;
    bottom: 18px;
    left: 214px;
    z-index: 3;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.screenshot-card--preview {
    top: 42px;
    right: 8px;
    width: 238px;
    min-height: 232px;
    z-index: 2;
}

.placeholder-topbar {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.placeholder-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dbe1f0;
}

.placeholder-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.placeholder-lines {
    display: grid;
    gap: 12px;
}

.mockup-form-fields {
    display: grid;
    gap: 10px;
}

.mockup-field {
    display: grid;
    gap: 6px;
}

.mockup-field-label {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: #64748b;
}

.mockup-field-value {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #edf2ff;
    border: 1px solid #dbe7ff;
    border-radius: 10px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.placeholder-lines div,
.document-preview-lines div,
.visual-placeholder,
.visual-placeholder::before,
.visual-placeholder::after {
    border-radius: 10px;
}

.placeholder-lines div {
    height: 46px;
    background: #edf2ff;
    border: 1px solid #dbe7ff;
}

.stacked-file-list {
    display: grid;
    gap: 8px;
}

.stacked-file-list span {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    background: white;
    border: 1px solid #dbe7ff;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.bundle-support-text {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.document-preview-lines {
    display: grid;
    gap: 12px;
}

.document-preview-sheet {
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 12px;
}

.document-preview-title {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0f172a;
    margin-bottom: 10px;
}

.document-preview-copy {
    display: grid;
    gap: 8px;
}

.document-preview-copy p {
    margin: 0;
    color: #334155;
    font-size: 11px;
    line-height: 1.4;
}

.document-preview-copy strong {
    color: #0f172a;
    font-weight: 700;
}

.document-preview-lines div {
    height: 12px;
    background: #dbe7ff;
}

.marketing-card {
    background: white;
    border: 1px solid #e8edf6;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.marketing-card h3,
.marketing-card h2,
.package-card h3,
.persona-card h3,
.trust-title {
    font-weight: 700;
}

.icon-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.icon-card p,
.package-card p,
.persona-card p,
.visual-flow-card p,
.trust-panel p,
.stat-proof-card p,
.page-hero p {
    color: var(--gray);
    line-height: 1.6;
}

.icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #e8eeff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.icon-badge--green {
    background: #dcfce7;
    color: #15803d;
}

.icon-badge--blue {
    background: #dbeafe;
    color: #2563eb;
}

.package-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.package-card h3 {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.package-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.package-card .feature-bullet-list {
    font-size: 14px;
    gap: 8px;
    padding-left: 1rem;
    color: #475569;
}

.package-card .feature-bullet-list li::marker {
    color: #94a3b8;
}

.package-card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.package-card-header .icon-badge {
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-bullet-list {
    padding-left: 1.1rem;
    margin: 0;
    color: #334155;
    display: grid;
    gap: 10px;
}

.feature-bullet-list-spacious {
    gap: 14px;
    margin-bottom: 28px;
}

.accountants-hero-note {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
    line-height: 1.6;
}

.accountants-usecases .row {
    row-gap: 1.75rem;
}

.accountants-usecases .package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accountants-usecases .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.accountants-usecases .package-card .feature-bullet-list {
    margin-top: 18px;
}

.package-card-featured {
    border-color: #bfd2ff;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 36px rgba(76, 105, 255, 0.12);
}

.package-card-featured:hover {
    box-shadow: 0 24px 52px rgba(76, 105, 255, 0.16), 0 6px 14px rgba(15, 23, 42, 0.04);
}

.package-card-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e8eeff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.accountants-example-card {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.accountants-example-card h2 {
    margin-bottom: 12px;
}

.accountants-example-card p {
    margin: 0;
}

.accountants-time-card,
.accountants-implementation-card {
    max-width: 1120px;
    margin: 0 auto;
}

.accountants-time-card {
    padding: 48px;
    border-radius: 32px;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
    border: 1px solid #dfe8fb;
    box-shadow: 0 24px 60px rgba(31, 52, 84, 0.08);
}

.accountants-time-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.accountants-time-copy h2 {
    margin-bottom: 16px;
}

.accountants-time-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: end;
    justify-items: center;
}

.accountants-time-bar-group {
    display: grid;
    grid-template-rows: auto 240px auto;
    gap: 14px;
    align-items: end;
    text-align: center;
    justify-items: center;
    width: 100%;
}

.accountants-time-bar-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.accountants-time-bar {
    width: min(100%, 120px);
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 14px 14px;
    align-self: end;
    border: 1px solid rgba(31, 52, 84, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    box-shadow: inset 0 -24px 40px rgba(120, 142, 180, 0.08);
}

.accountants-time-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 12px 12px;
}

.accountants-time-bar-manual::after {
    top: 0;
    background: linear-gradient(180deg, #f3b464 0%, #e38a2f 100%);
    box-shadow: inset 0 -18px 28px rgba(160, 88, 20, 0.16);
}

.accountants-time-bar-documentor::after {
    height: 22px;
    background: linear-gradient(135deg, var(--primary) 0%, #6f89ff 100%);
    box-shadow: 0 10px 22px rgba(47, 84, 235, 0.16);
}

.accountants-time-bar-group strong {
    display: block;
    min-height: 1.6em;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--heading-color);
}

.accountants-time-bar-group-featured strong,
.accountants-time-bar-group-featured .accountants-time-bar-label {
    color: var(--primary);
}

.accountants-time-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.accountants-time-metric {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 52, 84, 0.08);
}

.accountants-time-metric strong {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1.1;
}

.accountants-time-metric span {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.accountants-time-proof {
    margin: 0;
    max-width: 560px;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.6;
}

.accountants-implementation-card {
    padding: 8px 0 0;
}

.accountants-implementation-steps {
    margin-top: 28px;
    margin-bottom: 28px;
}

.accountants-implementation-step {
    padding: 24px;
    border: 1px solid rgba(31, 52, 84, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(31, 52, 84, 0.06);
}

.accountants-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #edf2ff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.accountants-implementation-step h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.accountants-implementation-step p {
    margin: 0;
    color: var(--text-soft);
}

.accountants-implementation-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.accountants-implementation-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f7faff;
    border: 1px solid #dfe8fb;
    color: var(--heading-color);
    font-weight: 600;
}

.accountants-final-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.visual-flow-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    padding: 28px;
    color: white;
}

.visual-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.visual-flow-card .placeholder-label,
.section-title-on-dark p,
.section-title-on-dark h2,
.visual-flow-card p {
    color: white;
}

.visual-flow-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.visual-placeholder {
    position: relative;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 0;
    overflow: hidden;
}

.visual-form-stack,
.visual-bundle-stack,
.visual-download-stack {
    position: relative;
    z-index: 1;
}

.visual-placeholder--form,
.visual-placeholder--archive,
.visual-placeholder--download {
    padding: 18px;
}

.visual-placeholder--form::before,
.visual-placeholder--archive::before,
.visual-placeholder--download::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.visual-form-stack {
    display: grid;
    gap: 12px;
}

.visual-form-stack span {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.visual-bundle-stack {
    display: grid;
    gap: 10px;
    padding-top: 6px;
}

.visual-bundle-stack span {
    display: block;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(12, 18, 34, 0.32);
    border: 1px solid rgba(255,255,255,0.14);
    color: white;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.visual-bundle-stack span:nth-child(1) {
    width: 100%;
}

.visual-bundle-stack span:nth-child(2) {
    width: 92%;
    transform: translateX(8px);
}

.visual-bundle-stack span:nth-child(3) {
    width: 86%;
    transform: translateX(16px);
}

.visual-bundle-stack span:nth-child(4) {
    width: 80%;
    transform: translateX(24px);
}

.visual-download-stack {
    display: grid;
    gap: 12px;
    align-content: center;
    min-height: 100%;
}

.visual-download-stack span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    color: white;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.visual-download-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #7ea0ff 0%, #5f82ff 100%);
    border: 1px solid rgba(255,255,255,0.24);
    color: white;
    font-size: 14px;
    box-shadow: 0 14px 28px rgba(34, 51, 124, 0.35);
}

.visual-download-action i {
    font-size: 18px;
}

.visual-flow-footer {
    margin-top: auto;
    padding-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.visual-placeholder--library::before {
    inset: 18px;
}

.visual-placeholder--library::after {
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 44px;
}

.visual-placeholder--cards::before {
    inset: 20px 20px 90px;
}

.visual-placeholder--cards::after {
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 52px;
}

.library-preview-card,
.workflow-screenshot-placeholder {
    padding: 24px;
}

.marketing-real-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid #dbe6f6;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.library-example-group p {
    margin-bottom: 12px;
}

.library-example-group-divider {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e7eef9;
}

.library-example-list-spaced {
    margin-top: 18px;
}

.library-example-stack {
    margin-top: 18px;
}

.library-card-link {
    display: inline-flex;
    margin-top: 18px;
}

.workflow-choice-panel,
.workflow-form-panel,
.workflow-results-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workflow-choice-panel {
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
    border: 1px solid #dfe8f7;
    padding: 20px;
}

.workflow-choice-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.workflow-choice-item-head h3 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.workflow-choice-item-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.workflow-choice-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #3158d8;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.workflow-choice-doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.workflow-choice-doc-list li {
    position: relative;
    padding-left: 26px;
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
}

.workflow-choice-doc-list li::before {
    content: "\f392";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: "bootstrap-icons";
    color: #6b86c8;
    font-size: 14px;
}

.workflow-choice-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e3ebf8;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.workflow-choice-secondary strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.workflow-form-panel {
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dfe7f5;
    padding: 20px;
}

.workflow-form-note {
    margin: 0;
    color: #4f6ab3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.workflow-form-section {
    padding-top: 4px;
}

.workflow-form-section + .workflow-form-section {
    border-top: 1px solid #e6edf8;
    padding-top: 16px;
}

.workflow-form-section-title {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.workflow-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.workflow-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.workflow-form-field span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.workflow-form-field div {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d7e2f4;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.workflow-form-field-wide {
    grid-column: 1 / -1;
}

.workflow-form-more {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e6edf8;
}

.workflow-form-more strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.workflow-form-more span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.workflow-results-panel {
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
    border: 1px solid #dfe7f5;
    padding: 20px;
}

.workflow-results-status-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-results-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #17764f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.workflow-results-status-head strong,
.workflow-results-archive-head strong {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.workflow-results-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 2px 0 4px;
}

.workflow-results-actions span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #cfdcf2;
    background: #fff;
    color: #3158d8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.workflow-results-archive-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e3ebf8;
}

.workflow-results-archive-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: #5f6f8f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}

.workflow-results-archive-head strong {
    max-width: 34ch;
    line-height: 1.35;
}

.workflow-results-file-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.workflow-results-file-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 12px;
    background: transparent;
    border-bottom: 1px solid #e7eef9;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.workflow-results-file-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.workflow-results-file-list i {
    color: #6b86c8;
    font-size: 14px;
}

.workflow-source-block {
    max-width: 1140px;
    margin: 0 auto;
}

.workflow-source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.workflow-source-card {
    height: 100%;
    padding: 28px;
}

.workflow-source-card h3 {
    margin-bottom: 10px;
}

.workflow-source-card p {
    margin: 0;
    color: var(--text-soft);
}

.workflow-share-block {
    max-width: 1120px;
    margin: 0 auto;
}

.workflow-share-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 0;
    margin-top: 36px;
    border: 1px solid #dfe8fb;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 40px rgba(31, 52, 84, 0.07);
    overflow: hidden;
}

.workflow-share-lane {
    padding: 32px 34px;
}

.workflow-share-lane h3 {
    margin: 16px 0 14px;
}

.workflow-share-lane .feature-bullet-list {
    margin-bottom: 0;
}

.workflow-share-lane .feature-bullet-list li {
    margin-bottom: 10px;
}

.workflow-share-divider {
    background: linear-gradient(180deg, rgba(223, 232, 251, 0.2) 0%, rgba(223, 232, 251, 0.9) 20%, rgba(223, 232, 251, 0.9) 80%, rgba(223, 232, 251, 0.2) 100%);
}

.sample-bundle-card {
    border-radius: 18px;
    background: linear-gradient(180deg, #f7faff 0%, #f3f8ff 100%);
    border: 1px solid #e1ebfb;
    padding: 24px;
}

@media (max-width: 991.98px) {
    .workflow-choice-item-head,
    .workflow-choice-secondary {
        flex-direction: column;
    }

    .workflow-results-archive-head {
        grid-template-columns: 1fr;
    }

    .workflow-results-archive-head span {
        justify-self: start;
    }

    .workflow-source-grid {
        grid-template-columns: 1fr;
    }

    .workflow-share-band {
        grid-template-columns: 1fr;
    }

    .workflow-share-divider {
        width: auto;
        height: 1px;
        background: rgba(223, 232, 251, 0.9);
    }
}

@media (max-width: 767.98px) {
    .workflow-choice-panel,
    .workflow-form-panel,
    .workflow-results-panel {
        padding: 16px;
    }

    .workflow-form-grid,
    .workflow-results-actions {
        grid-template-columns: 1fr;
    }

    .workflow-form-section {
        padding: 0;
    }
}

.sample-bundle-header {
    margin-bottom: 20px;
}

.sample-bundle-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #5b6f9a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sample-bundle-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.sample-bundle-list {
    display: grid;
    gap: 10px;
}

.sample-bundle-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(219, 231, 255, 0.8);
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
}

.sample-bundle-list span:first-child {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(219, 231, 255, 0.8);
    box-shadow: none;
}

.sample-bundle-list i {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.sample-bundle-hint,
.library-helper-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.sample-bundle-hint {
    margin: 16px 0 0;
}

.library-helper-text {
    margin: 14px 0 0;
}

.example-output-card {
    display: flex;
    flex-direction: column;
}

.example-input-grid .mockup-field-value {
    display: none;
}

.example-input-instruction {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.example-input-wrap {
    position: relative;
}

.example-input-control {
    min-height: 42px;
    background: #fff;
    border: 1px solid #d6e0f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 42px 10px 14px;
    cursor: text;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.example-input-control:hover {
    border-color: #bfd0eb;
    background: #fbfdff;
}

.example-input-control:focus {
    background: #fff;
    border-color: #7fa7ff;
    box-shadow: 0 0 0 0.2rem rgba(76, 105, 255, 0.16);
}

.example-input-control.is-guided {
    box-shadow: 0 0 0 0.25rem rgba(76, 105, 255, 0.12);
}

.example-input-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #9aa9c3;
    font-size: 14px;
    pointer-events: none;
}

.example-input-wrap:hover .example-input-icon,
.example-input-control:focus + .example-input-icon {
    color: #5d7ef0;
}

.example-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.example-back-link:hover {
    color: #334155;
}

.example-output-helper,
.example-key-message {
    color: #64748b;
}

.example-output-helper {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.example-key-message {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.example-doc-accordion {
    margin-bottom: 16px;
}

.example-doc-accordion .accordion-item {
    border: 1px solid #e5ebf7;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
}

.example-doc-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.example-doc-accordion .accordion-button {
    font-weight: 600;
    color: #1e293b;
    background: #fff;
    box-shadow: none;
    padding: 14px 18px;
}

.example-doc-accordion .accordion-button:not(.collapsed) {
    color: #0f172a;
    background: #f8fbff;
    box-shadow: none;
}

.example-doc-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.example-doc-accordion .accordion-body {
    background: #f8fbff;
    padding: 18px;
    border-top: 1px solid #e5ebf7;
}

.example-document-preview {
    background: #fff;
    border: 1px solid #e8edf6;
    border-radius: 12px;
    padding: 22px 24px;
    color: #334155;
    line-height: 1.7;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    font-family: Georgia, "Times New Roman", serif;
    transition: box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.example-document-preview.is-updating {
    border-color: #bfd2ff;
    background: #fdfefe;
    box-shadow: 0 0 0 0.22rem rgba(76, 105, 255, 0.1);
}

.example-document-note {
    display: inline-block;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
}

.example-document-preview h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
}

.example-document-preview p {
    margin-bottom: 8px;
}

.example-document-preview p:last-child {
    margin-bottom: 0;
}

.example-doc-center {
    text-align: center;
}

.persona-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.persona-card-featured {
    border-color: #bfd2ff;
    box-shadow: 0 20px 40px rgba(76, 105, 255, 0.14);
}

.persona-card p {
    margin-bottom: 0;
}

.persona-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    font-weight: 700;
    color: var(--primary);
}

.trust-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.stat-proof-card {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    color: white;
}

.proof-label {
    color: rgba(255, 255, 255, 0.88);
}

.proof-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.proof-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 12px 0 8px;
}

.proof-unit {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.proof-period {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.proof-hours {
    margin-top: 18px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.trust-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
}

.trust-mini-card i {
    color: var(--primary);
    font-size: 18px;
}

.home-reviews-section {
    padding-top: 28px;
    padding-bottom: 36px;
}

.home-reviews-shell {
    padding: 42px 36px 36px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    border: 1px solid #dae6f8;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.home-review-card {
    padding: 26px 24px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e3ebf8;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-review-card-featured {
    border-color: #cfdbff;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 34px rgba(76, 105, 255, 0.08);
}

.home-review-quote-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #eef4ff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.home-review-text {
    margin: 0 0 22px;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.7;
    flex: 1 1 auto;
}

.home-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e8eef9;
}

.home-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8efff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.home-review-author strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.3;
}

.home-review-author span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.cta-section-compact {
    padding: 72px 0;
}

.cta-supporting-text {
    opacity: 0.9;
    margin-top: 16px;
}

.page-hero {
    padding: 82px 0 72px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero p {
    max-width: 680px;
    font-size: 18px;
}

.page-hero-soft {
    background: linear-gradient(to bottom right, #eef4ff, #ffffff);
}

.page-hero-accent {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    color: white;
}

.page-hero-accent p,
.page-hero-accent h1 {
    color: white;
}

@media (max-width: 1200px) {
    .marketing-nav-gap {
        gap: 0.35rem;
    }

    .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 992px) {
    .marketing-section {
        padding: 70px 0;
    }

    .homepage-hero {
        padding: 64px 0 72px;
    }

    .homepage-hero-mockup {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .screenshot-card {
        position: static;
        width: 100%;
        min-height: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .screenshot-card--files,
    .screenshot-card--preview {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .how-cta-wrapper {
        margin-top: 32px;
    }

    .home-reviews-shell {
        padding: 30px 18px 22px;
        border-radius: 22px;
    }

    .accountants-time-card,
    .accountants-implementation-card {
        padding: 28px;
    }

    .accountants-time-panel,
    .accountants-time-metrics,
    .accountants-time-visual {
        grid-template-columns: 1fr;
    }

    .accountants-time-bar-manual {
        height: 150px;
    }

    .accountants-time-bar-documentor {
        height: 150px;
    }

    .accountants-time-bar-group {
        grid-template-rows: auto 160px auto;
    }

    .accountants-time-bar {
        height: 150px;
    }

    .accountants-time-bar-documentor::after {
        height: 18px;
    }

    .accountants-implementation-card {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-inline-points {
        display: grid;
        gap: 10px;
    }

    .pricing-header h1,
    .contact-header h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .marketing-card,
    .workflow-screenshot-placeholder,
    .library-preview-card {
        padding: 22px;
    }

    .screenshot-card {
        padding: 18px;
    }

    .placeholder-label {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .mockup-field-label {
        font-size: 11px;
    }

    .mockup-field-value {
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .stacked-file-list span {
        padding: 9px 10px;
        font-size: 13px;
    }

    .bundle-support-text {
        font-size: 12px;
    }

    .document-preview-sheet {
        padding: 12px;
    }

    .document-preview-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .document-preview-copy p {
        font-size: 11px;
        line-height: 1.4;
    }

    .sample-bundle-card {
        padding: 18px;
    }

    .sample-bundle-header h3 {
        font-size: 20px;
    }

    .sample-bundle-list span {
        font-size: 13px;
        padding: 10px 12px;
    }

    .proof-value {
        font-size: 38px;
    }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   Dark Hero вЂ” homepage
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.homepage-hero--dark {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
}

/* Ambient blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-blob--blue {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76,105,255,0.22) 0%, transparent 70%);
}
.hero-blob--purple {
    bottom: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,111,255,0.15) 0%, transparent 70%);
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(76,105,255,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,105,255,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Left column text */
.section-eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(76,105,255,0.15);
    border: 1px solid rgba(76,105,255,0.25);
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4c69ff;
    animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse {
    50% { opacity: .4; }
}

.hero-title-dark {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-lead-dark {
    font-family: 'DM Sans', sans-serif;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta-primary {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(76,105,255,0.4);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.hero-cta-primary:hover {
    background-color: #3a54e5;
    box-shadow: 0 8px 28px rgba(76,105,255,0.5);
    transform: translateY(-2px);
}

.hero-cta-ghost {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    background: transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-cta-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
}

/* Stats row */
.hero-proof-intro {
    font-family: 'DM Sans', sans-serif;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: #94a3b8;
}

.hero-stats-row {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-stats-row li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.hero-stat-value {
    font-family: 'Manrope', 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 0 currentColor;
}
.hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #64748b;
}

/* Right column вЂ” document mockup */
.hero-doc-mockup {
    position: relative;
    min-height: 620px;
}

.hero-doc-card {
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    border: 1px solid #e6edf8;
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.hero-doc-card__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.hero-doc-card__title i {
    font-size: 15px;
    color: #1d4ed8;
}

.hero-doc-card--form {
    top: 6px;
    left: 0;
    width: 380px;
    padding: 22px 22px 18px;
    z-index: 1;
}

.hero-doc-form {
    display: grid;
    gap: 12px;
}

.hero-doc-field {
    display: grid;
    gap: 6px;
}

.hero-doc-field label {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.hero-doc-field__value {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #edf3ff;
    border: 1px solid #dbe7ff;
    border-radius: 11px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
}

.hero-doc-card--preview {
    top: 32px;
    right: 22px;
    width: 248px;
    padding: 20px;
    z-index: 2;
}

.hero-doc-preview-sheet {
    border: 1px solid #d8e2f1;
    border-radius: 16px;
    background: #ffffff;
    padding: 16px 14px;
}

.hero-doc-preview-sheet__name {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-doc-preview-sheet__text {
    color: #334155;
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 8px;
}

.hero-doc-preview-sheet__text--strong {
    font-weight: 800;
    color: #0f172a;
}

.hero-doc-card--bundle {
    left: 182px;
    right: 0;
    bottom: 4px;
    padding: 20px;
    z-index: 3;
}

.hero-doc-bundle-list {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-doc-bundle-item {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 11px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 700;
}

.hero-doc-bundle-note {
    color: #334155;
    font-size: 13px;
}

@media (max-width: 992px) {
    .hero-doc-mockup {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .hero-doc-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
    }

    .hero-doc-card--form,
    .hero-doc-card--preview,
    .hero-doc-card--bundle {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-doc-mockup {
        gap: 14px;
    }

    .hero-doc-card--form,
    .hero-doc-card--preview,
    .hero-doc-card--bundle {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-doc-card__title {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .hero-doc-field__value,
    .hero-doc-bundle-item {
        min-height: 36px;
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .homepage-hero--dark {
        padding: 90px 0 60px;
        min-height: auto;
    }
    .hero-float-badge--white { top: -10px; left: -10px; }
    .hero-float-badge--blue { bottom: -10px; right: -10px; }
    .hero-terminal__body { grid-template-columns: 1fr; }
    .hero-terminal__col--form { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
    .hero-title-dark { font-size: 2.4rem; }
    .hero-float-badge { display: none; }
    .hero-stats-row { gap: 20px; }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   Alternative homepage sections
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

/* Shared section base */
.alt-section { padding: 96px 0; }
.alt-section--white { background: #ffffff; }
.alt-section--top-line { border-top: 3px solid; border-image: linear-gradient(90deg, #4c69ff, #8b5cf6, #4c69ff) 1; }
.alt-section--dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
}
.alt-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
}
.alt-blob--left { top: 0; left: 25%; background: radial-gradient(circle, rgba(76,105,255,0.08) 0%, transparent 70%); }
.alt-blob--right { bottom: 0; right: 25%; background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%); }

/* Typography */
.alt-h2 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #0d1117;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}
.alt-h2--white { color: #ffffff; }
.alt-h2-accent { color: #4c69ff; }
.alt-h2-gradient {
    background: linear-gradient(135deg, #6f89ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.alt-lead { font-family: 'DM Sans', sans-serif; font-size: 17px; color: #4b5563; line-height: 1.7; }
.alt-lead--muted { color: #94a3b8; }
.alt-accent-line {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4c69ff, #8b5cf6);
    margin-bottom: 20px;
}
.alt-section-header--left { margin-bottom: 48px; }

/* Bento grid вЂ” pain section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: auto;
}
.bento-card {
    background: #ffffff;
    border: 1px solid #e8edf6;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bento-card:hover { box-shadow: 0 12px 32px rgba(15,23,42,0.1); transform: translateY(-3px); }
.bento-card--sm { grid-column: span 1; }
.bento-card--lg { grid-column: span 2; }
.bento-card--solution {
    grid-column: span 1;
    background: linear-gradient(135deg, #4c69ff 0%, #3a54e5 100%);
    color: white;
    box-shadow: 0 20px 48px rgba(76,105,255,0.3);
}
.bento-card h3 { font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0d1117; margin-bottom: 8px; }
.bento-card p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #4b5563; line-height: 1.6; margin: 0; }
.bento-card--solution h3 { color: white; font-size: 20px; }
.bento-card--solution p { color: rgba(255,255,255,0.75); }
.bento-solution-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.bento-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 20px;
}
.bento-icon--red { background: #fef2f2; color: #ef4444; }
.bento-icon--amber { background: #fffbeb; color: #f59e0b; }
.bento-icon--orange { background: #fff7ed; color: #f97316; }
.bento-icon--violet { background: #f5f3ff; color: #8b5cf6; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bento-tags span {
    padding: 5px 12px; border-radius: 8px;
    background: #fffbeb; border: 1px solid #fde68a;
    color: #b45309; font-size: 12px; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--lg, .bento-card--sm, .bento-card--solution { grid-column: span 1; }
}

/* How it works вЂ” steps tabs + dark card */
.alt-steps-tabs {
    display: flex; gap: 8px; margin-bottom: 32px;
    padding: 6px; background: #f5f7ff;
    border-radius: 16px; border: 1px solid #e3e5e8;
    width: fit-content;
}
.alt-steps-tab {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 12px;
    font-size: 14px; font-weight: 700; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    background: transparent; color: #6b7280;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.alt-steps-tab--active {
    background: white; color: #0d1117;
    box-shadow: 0 2px 12px rgba(15,23,42,0.1);
}
.alt-steps-tab__num {
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900;
    background: #4c69ff; color: white;
}
.alt-steps-tab__num--inactive { background: #e3e5e8; color: #9ca3af; }

@media (max-width: 768px) {
    .alt-steps-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-bottom: 24px;
    }

    .alt-steps-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
        gap: 0;
        font-size: 0;
    }

    .alt-steps-tab__num {
        width: 28px;
        height: 28px;
        font-size: 11px;
        flex-shrink: 0;
    }
}

.alt-step-dark {
    height: 100%; background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%); border-radius: 20px;
    padding: 40px; display: flex; flex-direction: column;
    justify-content: space-between; position: relative; overflow: hidden;
    min-height: 374px;
}
.alt-step-dark::before {
    content: ''; position: absolute; top: -30%; right: -30%;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(76,105,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.alt-step-dark__num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 6rem; font-weight: 900; line-height: 1;
    color: rgba(255,255,255,0.08); display: block; margin-bottom: 16px;
    user-select: none;
}
.alt-step-dark h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.08; max-width: 340px; }
.alt-step-dark p { font-family: 'DM Sans', sans-serif; font-size: 17px; color: #94a3b8; line-height: 1.65; flex: 1; }
.alt-step-dark__dots { display: flex; gap: 8px; margin-top: 32px; }
.alt-step-dark__dot { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.2); width: 16px; }
.alt-step-dark__dot--active { background: #4c69ff; width: 32px; }

.alt-step-preview {
    height: 100%; background: #f8fafc; border-radius: 20px;
    border: 1px solid #e3e5e8; overflow: hidden;
}
.alt-step-preview__bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px; border-bottom: 1px solid #e3e5e8;
    background: white;
}
.alt-step-preview__dots { display: flex; gap: 6px; }
.alt-step-preview__dots span { width: 12px; height: 12px; border-radius: 50%; }
.alt-step-preview__dots span:nth-child(1) { background: rgba(239,68,68,0.4); }
.alt-step-preview__dots span:nth-child(2) { background: rgba(234,179,8,0.4); }
.alt-step-preview__dots span:nth-child(3) { background: rgba(34,197,94,0.4); }
.alt-step-preview__label { font-size: 11px; color: #9ca3af; font-family: monospace; margin-left: 8px; }
.alt-step-preview__body { padding: 24px; }

.landing-how-stage {
    display: none;
    height: 100%;
}

.landing-how-stage--active {
    display: block;
}

.landing-how-widget .col-lg-5 .alt-step-dark {
    height: 100%;
    min-height: 402px;
}

.landing-how-widget .col-lg-5 {
    min-height: 402px;
}

.landing-how-widget .col-lg-5 .landing-how-stage {
    min-height: 402px;
}

.landing-how-widget .col-lg-5 .landing-how-stage--active {
    height: 100%;
}

.landing-step-chooser {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
}

.landing-step-choice {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid #d9e3f3;
    background: #ffffff;
    color: #4b5563;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    text-align: left;
    cursor: default;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.landing-step-choice:hover {
    border-color: #d9e3f3;
    background: #ffffff;
    transform: none;
}

.landing-step-choice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

.landing-step-choice__label {
    flex: 1;
}

.landing-step-choice__badge {
    display: none;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.landing-step-choice--active {
    border-color: transparent;
    background: linear-gradient(135deg, #5a6df8 0%, #4c69ff 100%);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(76, 105, 255, 0.22);
}

.landing-step-choice--active:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #5a6df8 0%, #4c69ff 100%);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(76, 105, 255, 0.22);
    transform: none;
}

.landing-step-choice--active .landing-step-choice__dot {
    background: rgba(255,255,255,0.95);
}

.landing-step-choice--active .landing-step-choice__badge {
    display: inline-flex;
}

.landing-step-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.landing-step-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-step-form__field span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.landing-step-form__field div {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #dbe4f2;
    background: #ffffff;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 14px;
}

.landing-step-form__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #16a34a;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.landing-step-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.landing-step-results__list {
    display: flex;
    flex-direction: column;
}

.landing-step-result-file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e8edf6;
}

.landing-step-result-file__icon {
    color: #6b7fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
    line-height: 1;
    opacity: 0.92;
}

.landing-step-result-file__name {
    flex: 1;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.05;
}

.landing-step-result-file__badge {
    padding: 3px 7px;
    border-radius: 6px;
    background: #fff1f2;
    color: #ff5a67;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.landing-step-results__cta {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #5a6df8 0%, #4c69ff 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(76, 105, 255, 0.22);
}

/* Bundles section вЂ” dark */
.alt-bundle-card {
    background: #161d2e; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
    height: 100%;
}
.alt-bundle-card__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, #4c69ff 0%, #3a54e5 100%);
}
.alt-bundle-card__header h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: white; margin: 0; }
.alt-bundle-card__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.alt-bundle-card__icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white; flex-shrink: 0;
}
.alt-bundle-files { padding: 20px 28px; display: flex; flex-direction: column; gap: 10px; }
.alt-bundle-file {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.alt-bundle-file:hover { border-color: rgba(76,105,255,0.4); background: rgba(76,105,255,0.05); }
.alt-bundle-file__icon {
    width: 32px; height: 36px; border-radius: 8px;
    background: rgba(76,105,255,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #6f89ff; font-size: 14px; flex-shrink: 0;
}
.alt-bundle-file span { flex: 1; font-size: 13px; font-weight: 500; color: #cbd5e1; font-family: 'DM Sans', sans-serif; }
.alt-bundle-file .bi-download { color: #475569; font-size: 13px; }
.alt-bundle-card__note { padding: 0 28px 20px; font-size: 11px; color: #475569; text-align: center; font-family: 'DM Sans', sans-serif; margin: 0; }

.alt-bundle-copy {
    max-width: 760px;
    padding-top: 0;
    padding-right: 22px;
}

.alt-bundle-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(99, 116, 255, 0.35);
    background: rgba(76, 105, 255, 0.10);
    color: #cdd6ff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.alt-bundle-copy__eyebrow i {
    font-size: 13px;
    color: #89a0ff;
}

.alt-bundle-copy h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 2.9vw, 3rem);
    font-weight: 900;
    line-height: 1.06;
}

.alt-bundle-copy__accent {
    color: #7d86ff;
}

.alt-bundle-copy p {
    margin: 0 0 30px;
    max-width: 44rem;
    color: rgba(226, 232, 240, 0.82);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.68;
}

.alt-bundle-copy__list {
    max-width: 46rem;
    margin-bottom: 32px;
    color: rgba(241, 245, 249, 0.9);
    padding-left: 1.2rem;
    display: grid;
    gap: 16px;
}

.alt-bundle-copy__list li::marker {
    color: rgba(148, 163, 184, 0.95);
}

.alt-bundle-copy__actions {
    margin-top: 14px;
    margin-bottom: 24px;
}

.alt-bundle-copy__helper {
    margin-bottom: 0;
    color: rgba(148, 163, 184, 0.38);
    font-size: 11px;
    line-height: 1.45;
}

.alt-bundle-sidecards {
    max-width: 100%;
    margin-left: 0;
    padding-top: 8px;
}

.package-card--glass {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(214, 223, 243, 0.92);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    padding: 18px 20px;
    border-radius: 18px;
    min-height: 0;
}

.package-card--glass:hover {
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.package-card--glass h3 {
    color: #0f172a;
    margin: 0 0 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.package-card--glass p {
    margin: 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.45;
}

.package-card-header--compact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.package-card-checklist {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    color: #475569;
    margin: 0;
}

.package-card-checklist li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #475569 !important;
    max-width: 34ch;
    opacity: 1;
}

.package-card-checklist li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 13px;
    color: #6d7cff;
}


.package-card.package-card--glass .feature-bullet-list.package-card-checklist li::marker {
    color: transparent;
}

.icon-badge--glass-green,
.icon-badge--glass-blue,
.icon-badge--glass-violet {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 0;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    font-size: 17px;
    flex-shrink: 0;
}

.icon-badge--glass-green {
    background: #bbf7d0;
    color: #15803d;
}

.icon-badge--glass-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-badge--glass-violet {
    background: rgba(102, 83, 222, 0.34);
    color: #d8ccff;
}

.package-card-cta {
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(92, 108, 255, 0.12);
    border: 1px solid rgba(124, 140, 255, 0.22);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.package-card-cta:hover {
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.package-card-header--cta {
    margin-bottom: 14px;
}

.package-card-header--cta p {
    margin: 0;
}

.package-card-cta h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.package-card-cta p {
    color: rgba(226, 232, 240, 0.82);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    max-width: 34ch;
}

.package-card-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d8ddff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.package-card-cta__link:hover {
    color: #ffffff;
}

.alt-btn-ghost-white {
    border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
    background: transparent; font-weight: 600; padding: 12px 24px; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.alt-btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); color: white; }

/* Audience section */
.alt-audience-featured {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    border-radius: 24px; padding: 36px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: flex-start;
    transition: transform 0.25s ease;
}
.alt-audience-featured:hover { transform: translateY(-4px); }
.alt-audience-featured::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(76,105,255,0.25) 0%, transparent 60%);
    pointer-events: none;
}
.alt-audience-featured__icon {
    width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
    background: linear-gradient(135deg, #4c69ff, #3a54e5);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
    box-shadow: 0 8px 24px rgba(76,105,255,0.4);
    position: relative; z-index: 1;
}
.alt-audience-featured h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 900;
    color: white; margin-bottom: 14px; position: relative; z-index: 1;
}
.alt-audience-featured p {
    font-family: 'DM Sans', sans-serif; font-size: 15px;
    color: rgba(255,255,255,0.65); line-height: 1.65;
    position: relative; z-index: 1; margin-bottom: 20px;
    flex: 1;
}
.alt-audience-featured__link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 10px;
    background: linear-gradient(135deg, #4c69ff, #3a54e5);
    color: white; font-size: 14px; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(76,105,255,0.3);
    position: relative; z-index: 1; width: fit-content;
    transition: box-shadow 0.2s, transform 0.15s;
}
.alt-audience-featured__link:hover { box-shadow: 0 8px 24px rgba(76,105,255,0.5); transform: translateY(-2px); }

.alt-audience-featured__footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
}

.alt-audience-featured__label {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    min-height: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}

.alt-audience-card {
    background: white; border: 1px solid #e3e5e8; border-radius: 20px; padding: 24px;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative; overflow: hidden;
}
.alt-audience-card:hover { box-shadow: 0 20px 48px rgba(15,23,42,0.1); transform: translateY(-4px); }
.alt-audience-card__icon {
    width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px;
    background: linear-gradient(135deg, #e8eeff, #c7d2fe);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; color: #4c69ff;
    transition: background 0.25s, color 0.25s;
}
.alt-audience-card:hover .alt-audience-card__icon { background: linear-gradient(135deg, #4c69ff, #3a54e5); color: white; }
.alt-audience-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: #0d1117; margin-bottom: 8px; }
.alt-audience-card p { font-family: 'DM Sans', sans-serif; font-size: 13px; color: #4b5563; line-height: 1.6; margin: 0; }

/* Stats + Reviews combined section */
.alt-section--stats-reviews { background: transparent; }

.alt-stats-band {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
    padding: 72px 0;
    padding-bottom: 100px;
    position: relative; overflow: hidden;
}

.alt-stats-note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
}
.alt-stats-band::before {
    content: ''; position: absolute;
    top: -30%; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(76,105,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.alt-stats-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
    padding: 6px 16px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
}
.alt-stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.1);
    border-radius: 24px; overflow: hidden; margin-top: 32px;
}
.alt-stat-cell {
    text-align: center; padding: 40px 24px;
    background: rgba(15, 23, 42, 0.5);
    transition: background 0.2s;
}
.alt-stat-cell:hover { background: rgba(15, 23, 42, 0.7); }
.alt-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800; color: #4c69ff;
    letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px;
}
.alt-stat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600; color: white; margin-bottom: 4px; }
.alt-stat-sub { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.4); }

.alt-reviews-band {
    background: white;
    padding: 80px 0;
    clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0% 100%);
    margin-top: -2%;
    padding-top: calc(4% + 60px);
}
.alt-review-card {
    background: white; border: 1px solid #e3e5e8; border-radius: 24px;
    padding: 32px; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.alt-review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(15,23,42,0.12); }
.alt-review-card__top-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 24px 24px 0 0; }
.alt-review-card__top-line--blue { background: linear-gradient(90deg, #4c69ff, rgba(76,105,255,0.5)); }
.alt-review-card__top-line--purple { background: linear-gradient(90deg, #7c3aed, rgba(124,58,237,0.5)); }
.alt-review-card__top-line--green { background: linear-gradient(90deg, #16a34a, rgba(22,163,74,0.5)); }
.alt-review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.alt-review-quote { font-size: 48px; font-weight: 800; color: rgba(76,105,255,0.12); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; margin-bottom: 4px; }
.alt-review-card blockquote { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #4b5563; line-height: 1.7; margin: 0 0 24px; flex: 1; border: none; padding: 0; }
.alt-reviews-lead { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #4b5563; line-height: 1.7; max-width: 720px; margin: 12px auto 0; }
.alt-review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #f1f5f9; margin-top: auto; }
.alt-review-avatar {
    width: 40px; height: 40px; border-radius: 10px;
    display: block; object-fit: cover; object-position: center; flex-shrink: 0;
}
.alt-review-author strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #0d1117; }
.alt-review-author span { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #9ca3af; }

@media (max-width: 768px) {
    .alt-stats-grid { grid-template-columns: 1fr; }
    .alt-reviews-band { clip-path: none; margin-top: 0; padding-top: 60px; }
}

/* CTA section */
.alt-cta-section { padding: 80px 0; background: #f5f7ff; }
.alt-cta-card {
    position: relative; border-radius: 40px; overflow: hidden;
    padding: 80px 48px;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #1e3a8a 100%);
}
.alt-cta-card__glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% -10%, rgba(76,105,255,0.3) 0%, transparent 60%);
}
.alt-cta-card__grid-bg {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 48px 48px;
}
.alt-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); color: white;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
    padding: 6px 16px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif; margin-bottom: 24px;
}
.alt-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900; color: white;
    line-height: 1.06; letter-spacing: -0.035em;
    margin-bottom: 20px;
}
.alt-cta-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px; color: rgba(255,255,255,0.65);
    line-height: 1.65; max-width: 640px; margin: 0 auto 40px;
}
.alt-cta-note { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px; }

@media (max-width: 768px) {
    .alt-cta-card { padding: 48px 24px; border-radius: 24px; }
    .alt-cta-title { font-size: 2rem; }
    .alt-section { padding: 64px 0; }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   How It Works вЂ” redesigned page
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.hiw-hero {
    min-height: auto;
    padding: 120px 0 100px;
    text-align: center;
}

.hiw-hero .hero-title-dark {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.library-hero {
    min-height: auto;
    padding: 120px 0 100px;
    text-align: left;
}

.library-hero .hero-title-dark {
    max-width: 10.5ch;
    margin-left: 0;
    margin-right: 0;
}

.library-hero .hero-lead-dark {
    max-width: 520px;
}

.library-hero-tree {
    max-width: 34rem;
    margin-left: auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 56px rgba(7, 12, 28, 0.26);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.library-hero-tree__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.18);
}

.library-hero-tree__dots {
    display: inline-flex;
    gap: 6px;
}

.library-hero-tree__dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.library-hero-tree__dots span:nth-child(1) { background: rgba(248, 113, 113, 0.85); }
.library-hero-tree__dots span:nth-child(2) { background: rgba(250, 204, 21, 0.85); }
.library-hero-tree__dots span:nth-child(3) { background: rgba(74, 222, 128, 0.85); }

.library-hero-tree__label {
    color: rgba(226, 232, 240, 0.72);
    font-size: 12px;
    font-weight: 600;
}

.library-hero-tree__body {
    padding: 16px 18px 18px;
}

.library-tree-node {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
}

.library-tree-node + .library-tree-node {
    margin-top: 8px;
}

.library-tree-node--root {
    margin-bottom: 12px;
    padding: 8px 0 10px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.library-tree-node--folder {
    color: #ffffff;
}

.library-tree-node--file {
    color: rgba(226, 232, 240, 0.74);
}

.library-tree-node__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #9fb0ff;
    font-size: 15px;
    flex-shrink: 0;
}

.library-tree-node__icon--root {
    color: #c7d2fe;
}

.library-tree-node__icon--file {
    color: rgba(191, 219, 254, 0.74);
    font-size: 14px;
}

.library-tree-node__text {
    font-size: 14px;
    line-height: 1.45;
}

.library-tree-node--root .library-tree-node__text,
.library-tree-node--folder .library-tree-node__text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.library-tree-node--root .library-tree-node__text {
    color: #ffffff;
    font-size: 15px;
}

.library-tree-node--file .library-tree-node__text {
    font-weight: 500;
}

.library-tree-branch {
    position: relative;
    margin-left: 4px;
    padding-left: 22px;
}

.library-tree-branch + .library-tree-branch {
    margin-top: 8px;
}

.library-tree-branch::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 8px;
    left: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.library-tree-children {
    position: relative;
    margin-top: 4px;
    margin-left: 8px;
    padding-left: 16px;
    display: grid;
    gap: 6px;
}

.library-tree-children::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 12px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.library-tree-children .library-tree-node {
    position: relative;
}

.library-tree-children .library-tree-node::before {
    content: "";
    position: absolute;
    top: 17px;
    left: -16px;
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.library-tree-more {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-left: 34px;
    color: rgba(226, 232, 240, 0.56);
    font-size: 13px;
    font-weight: 500;
}

.library-tree-more__line {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 992px) {
    .library-hero {
        padding: 96px 0 78px;
    }

    .library-hero .hero-title-dark,
    .library-hero .hero-lead-dark {
        max-width: none;
    }

    .library-hero-tree {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .library-hero {
        padding: 80px 0 64px;
    }

    .library-hero-tree__body {
        padding: 14px 15px 16px;
    }

    .library-tree-node__text {
        font-size: 13px;
    }

    .library-tree-branch {
        padding-left: 18px;
    }

    .library-tree-more {
        margin-left: 28px;
    }
}

/* Step number watermark */
.hiw-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hiw-step-num {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: rgba(76, 105, 255, 0.12);
    letter-spacing: -0.04em;
    user-select: none;
}

.hiw-step-num--light {
    color: rgba(255, 255, 255, 0.1);
}

/* Preview card on dark background */
.hiw-preview-on-dark {
    border-color: rgba(255, 255, 255, 0.1);
    background: #161d2e;
}

.hiw-preview-on-dark .alt-step-preview__bar {
    background: #0d1117;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.hiw-preview-on-dark .alt-step-preview__label {
    color: #475569;
}

.hiw-preview-on-dark .workflow-form-panel {
    background: linear-gradient(180deg, #1a2236 0%, #151c2e 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.hiw-preview-on-dark .workflow-form-note {
    color: #6b8cff;
}

.hiw-preview-on-dark .workflow-form-section-title {
    color: rgba(255, 255, 255, 0.9);
}

.hiw-preview-on-dark .workflow-form-section + .workflow-form-section {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.hiw-preview-on-dark .workflow-form-field span {
    color: #64748b;
}

.hiw-preview-on-dark .workflow-form-field div {
    background: #0d1117;
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.hiw-preview-on-dark .workflow-form-more {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.hiw-preview-on-dark .workflow-form-more strong {
    color: rgba(255, 255, 255, 0.9);
}

.hiw-preview-on-dark .workflow-form-more span {
    color: #64748b;
}

/* Bullet list on dark bg */
.hiw-bullets-light {
    color: rgba(255, 255, 255, 0.75);
}

/* Source bento grid вЂ” 3 equal columns */
.hiw-source-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Share cards on dark */
.hiw-share-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hiw-share-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.hiw-share-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(76, 105, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #6f89ff;
    margin-bottom: 20px;
}

.hiw-share-card__icon--blue {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
}

.hiw-share-card h3 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .hiw-hero {
        padding: 90px 0 72px;
    }

    .hiw-step-num {
        font-size: 36px;
    }

    .hiw-source-grid {
        grid-template-columns: 1fr;
    }

    .hiw-share-card {
        padding: 28px;
    }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   For Accountants вЂ” redesigned page
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.acc-value-grid {
    grid-template-columns: repeat(4, 1fr);
}

.acc-value-grid .bento-card--solution {
    grid-column: span 1;
}

/* Use-case cards on dark */
.acc-usecase-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: background 0.25s ease, transform 0.25s ease;
}

.acc-usecase-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.acc-usecase-card--featured {
    border-color: rgba(76, 105, 255, 0.35);
    background: rgba(76, 105, 255, 0.08);
}

.acc-usecase-card--featured:hover {
    background: rgba(76, 105, 255, 0.14);
}

.acc-usecase-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(76, 105, 255, 0.2);
    border: 1px solid rgba(76, 105, 255, 0.3);
    color: #a5b4fc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.acc-usecase-card h3 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.acc-usecase-card > p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 18px;
}

@media (max-width: 991.98px) {
    .acc-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .acc-value-grid {
        grid-template-columns: 1fr;
    }

    .acc-value-grid .bento-card--solution {
        grid-column: span 1;
    }

    .acc-usecase-card {
        padding: 28px;
    }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   Library вЂ” redesigned page
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.lib-categories-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Example cards on dark */
.lib-example-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lib-example-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.lib-example-card h3 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.lib-example-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.lib-example-group {
    margin-bottom: 8px;
}

.lib-example-divider {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lib-example-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    font-weight: 700;
    font-size: 14px;
    color: #6f89ff;
    text-decoration: none;
    transition: color 0.2s;
}

.lib-example-link:hover {
    color: #a5b4fc;
}

/* Custom card */
.lib-custom-card {
    padding: 44px 46px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
    border: 1px solid #dfe8fb;
    box-shadow: 0 24px 60px rgba(31, 52, 84, 0.08);
}

.lib-custom-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: center;
}

.lib-custom-card__copy {
    max-width: 38rem;
}

.lib-custom-card__title {
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 16ch;
}

.lib-custom-card__lead {
    margin-top: 14px;
    margin-bottom: 0;
    max-width: 34ch;
}

.lib-custom-card__panel {
    padding: 0;
}

.lib-custom-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lib-custom-feature-card {
    min-height: 164px;
    padding: 20px 18px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e3e5e8;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lib-custom-feature-card:hover {
    box-shadow: 0 20px 48px rgba(15,23,42,0.1);
    transform: translateY(-4px);
}

.lib-custom-feature-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 16px;
}

.lib-custom-feature-card__icon--blue {
    background: rgba(76, 105, 255, 0.14);
    color: #4f6bff;
}

.lib-custom-feature-card__icon--violet {
    background: rgba(139, 92, 246, 0.14);
    color: #7c3aed;
}

.lib-custom-feature-card__icon--green {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

.lib-custom-feature-card__icon--amber {
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
}

.lib-custom-feature-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lib-custom-feature-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .lib-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lib-custom-card__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lib-custom-card__copy,
    .lib-custom-card__lead {
        max-width: none;
    }

    .lib-custom-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lib-categories-grid {
        grid-template-columns: 1fr;
    }

    .lib-example-card {
        padding: 24px;
    }

    .lib-custom-card {
        padding: 28px;
    }

    .lib-custom-card__panel {
        padding: 0;
    }

    .lib-custom-feature-grid {
        grid-template-columns: 1fr;
    }

    .lib-custom-feature-card {
        min-height: 0;
    }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   Example вЂ” redesigned page
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.example-back-link-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.example-back-link-dark:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Input card */
.example-input-card {
    background: #ffffff;
    border: 1px solid #e3e5e8;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.example-input-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.example-input-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8eeff, #c7d2fe);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4c69ff;
    flex-shrink: 0;
}

.example-input-card__title {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0d1117;
}

.example-input-card__sub {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-top: 2px;
}

/* Output card */
.example-output-card-new {
    background: #ffffff;
    border: 1px solid #e3e5e8;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.example-output-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.example-output-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #16a34a;
    flex-shrink: 0;
}

.example-output-card__title {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0d1117;
}

@media (max-width: 768px) {
    .example-input-card,
    .example-output-card-new {
        padding: 22px;
        border-radius: 20px;
    }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   For Accountants вЂ” two-column hero
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.acc-hero {
    min-height: auto;
    padding: 120px 0 100px;
}

.acc-hero .hero-title-dark {
    max-width: none;
}

.acc-hero .hero-lead-dark {
    max-width: 480px;
}

/* Right-side panel */
.acc-hero-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.acc-hero-panel__benefit,
.acc-hero-panel__note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.acc-hero-panel__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(76, 105, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6f89ff;
    flex-shrink: 0;
}

.acc-hero-panel__benefit p,
.acc-hero-panel__note p {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

.acc-hero-panel__note-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.acc-hero-panel__stats-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.acc-hero-panel__stats-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.acc-hero-panel__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
    padding-top: 22px;
}

.acc-hero-panel__stats-context {
    color: rgba(255, 255, 255, 0.48);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
}

.acc-hero-panel__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acc-hero-panel__stat-value {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.acc-hero-panel__stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .acc-hero {
        padding: 90px 0 72px;
    }

    .acc-hero .hero-lead-dark {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .acc-hero {
        padding: 80px 0 64px;
    }

    .acc-hero-panel {
        padding: 24px;
    }

    .acc-hero-panel__stats {
        grid-template-columns: 1fr;
    }
}



/* Final override: contact hero should not use full-screen dark hero layout */
.homepage-hero--dark.contact-hero {
    min-height: auto;
    align-items: flex-start;
    padding: 92px 0 76px;
}

@media (max-width: 992px) {
    .homepage-hero--dark.contact-hero {
        padding: 82px 0 66px;
    }
}

@media (max-width: 768px) {
    .homepage-hero--dark.contact-hero {
        padding: 74px 0 56px;
    }
}


/* Final override: landing hero should keep the pricing-style bottom wave */
.homepage-hero--dark.landing-hero {
    min-height: auto;
    align-items: flex-start;
    padding: 100px 0 92px;
    position: relative;
    overflow: hidden;
}

.homepage-hero--dark.landing-hero .container {
    z-index: 2;
}

.homepage-hero--dark.landing-hero .hero-doc-mockup {
    min-height: 560px;
}

@media (max-width: 992px) {
    .homepage-hero--dark.landing-hero {
        padding: 90px 0 76px;
    }

    .homepage-hero--dark.landing-hero .hero-doc-mockup {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .homepage-hero--dark.landing-hero {
        padding: 82px 0 64px;
    }

}



/* Unified hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 76px;
    background-color: var(--hero-wave-fill, #ffffff);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 48C120 34 240 30 360 36C480 42 600 58 720 56C840 54 960 34 1080 40C1200 46 1320 62 1440 52V120H0Z'/%3E%3C/svg%3E");
    -webkit-mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 48C120 34 240 30 360 36C480 42 600 58 720 56C840 54 960 34 1080 40C1200 46 1320 62 1440 52V120H0Z'/%3E%3C/svg%3E");
    mask-position: center bottom;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-wave {
        height: 56px;
    }
}

