    :root {
        --white: #ffffff;
        --bg: #f7f8fc;
        --bg2: #eef0f8;
        --border: #e2e5f0;
        --border2: #cdd2e8;
        --blue: #2563eb;
        --blue-light: #eff4ff;
        --blue-mid: #dbeafe;
        --blue-dark: #1d4ed8;
        --text: #0f172a;
        --text2: #334155;
        --muted: #64748b;
        --muted2: #94a3b8;
        --green: #16a34a;
        --font-h: 'Plus Jakarta Sans', sans-serif;
        --font-b: 'Manrope', sans-serif;
        --radius: 12px;
        --shadow-sm: 0 1px 3px rgba(15, 23, 42, .07), 0 1px 2px rgba(15, 23, 42, .04);
        --shadow: 0 4px 16px rgba(15, 23, 42, .08), 0 2px 6px rgba(15, 23, 42, .04);
        --shadow-lg: 0 12px 40px rgba(37, 99, 235, .14), 0 4px 12px rgba(15, 23, 42, .06);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--white);
        color: var(--text);
        font-family: var(--font-b);
        font-size: 16px;
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        display: block;
        max-width: 100%;
    }

    button {
        font-family: var(--font-b);
        cursor: pointer;
    }

    .container {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ══════════════ NAVBAR ══════════════ */
    nav {
        position: sticky;
        top: 0;
        z-index: 200;
        background: rgba(255, 255, 255, .93);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        gap: 16px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: var(--font-h);
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--text);
        flex-shrink: 0;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        background: var(--blue);
        border-radius: 9px;
        display: grid;
        place-items: center;
    }

    .logo-mark svg {
        width: 17px;
        height: 17px;
        color: #fff;
    }

    .logo span {
        color: var(--blue);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
    }

    .nav-links a {
        padding: 7px 13px;
        border-radius: 8px;
        font-size: .875rem;
        font-weight: 500;
        color: var(--muted);
        transition: color .18s, background .18s;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-links a:hover {
        color: var(--text);
        background: var(--bg);
    }

    .nav-links a svg {
        width: 14px;
        height: 14px;
    }

    /* Dropdown */
    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 8px;
        min-width: 230px;
        z-index: 300;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dd-item {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: .875rem;
        color: var(--text2);
        transition: background .15s;
    }

    .dd-item:hover {
        background: var(--bg);
    }

    .dd-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--blue-light);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .dd-icon svg {
        width: 15px;
        height: 15px;
        color: var(--blue);
    }

    .dd-text-title {
        font-weight: 700;
        font-size: .84rem;
        color: var(--text);
    }

    .dd-text-sub {
        font-size: .76rem;
        color: var(--muted);
        margin-top: 1px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .btn-ghost {
        padding: 8px 16px;
        border-radius: 8px;
        border: 1px solid var(--border2);
        background: var(--white);
        color: var(--text2);
        font-size: .875rem;
        font-weight: 600;
        transition: border-color .18s, color .18s;
    }

    .btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .btn-primary {
        padding: 9px 20px;
        border-radius: 8px;
        background: var(--blue);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        border: none;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .35);
        transition: background .18s, box-shadow .18s;
    }

    .btn-primary:hover {
        background: var(--blue-dark);
        box-shadow: var(--shadow-lg);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        display: block;
    }

    /* ══════════════ HERO ══════════════ */
    .hero {
        padding: 72px 0 52px;
        background: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, .06) 0%, transparent 70%);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--blue-light);
        border: 1px solid var(--blue-mid);
        border-radius: 99px;
        padding: 5px 14px 5px 8px;
        font-size: .78rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 22px;
        letter-spacing: .03em;
        text-transform: uppercase;
        animation: fadeUp .5s ease both;
    }

    .live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue);
        animation: blink 2s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    h1 {
        font-family: var(--font-h);
        font-size: clamp(2.1rem, 5vw, 3.6rem);
        font-weight: 800;
        letter-spacing: -.035em;
        line-height: 1.1;
        color: var(--text);
        max-width: 720px;
        margin: 0 auto 18px;
        animation: fadeUp .5s .07s ease both;
    }

    h1 .blue-text {
        color: var(--blue);
    }

    .hero-desc {
        font-size: 1.02rem;
        color: var(--muted);
        max-width: 500px;
        margin: 0 auto 40px;
        font-weight: 400;
        line-height: 1.7;
        animation: fadeUp .5s .13s ease both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(16px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Sample pills */
    .sample-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 18px;
        animation: fadeUp .5s .18s ease both;
    }

    .sample-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 99px;
        padding: 5px 14px 5px 6px;
        font-size: .8rem;
        font-weight: 600;
        color: var(--text2);
        transition: border-color .18s, background .18s, color .18s;
    }

    .sample-pill:hover {
        border-color: var(--blue);
        background: var(--blue-light);
        color: var(--blue);
        cursor: pointer;
    }

    .pill-avatar {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--blue-mid);
        display: grid;
        place-items: center;
        font-size: .68rem;
        font-weight: 800;
        color: var(--blue);
    }

    /* Upload box */
    .upload-box {
        background: var(--white);
        border: 1.5px dashed var(--border2);
        border-radius: 18px;
        box-shadow: var(--shadow);
        max-width: 700px;
        margin: 0 auto 14px;
        padding: 44px 32px 36px;
        cursor: pointer;
        transition: border-color .2s, box-shadow .2s;
        animation: fadeUp .5s .21s ease both;
    }

    .upload-box:hover {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .07), var(--shadow);
    }

    .upload-box input {
        display: none;
    }

    .upload-icon-wrap {
        width: 68px;
        height: 68px;
        background: var(--blue-light);
        border-radius: 18px;
        display: grid;
        place-items: center;
        margin: 0 auto 16px;
    }

    .upload-icon-wrap svg {
        width: 32px;
        height: 32px;
        color: var(--blue);
    }

    .upload-title {
        font-family: var(--font-h);
        font-size: 1.12rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 6px;
    }

    .upload-sub {
        font-size: .875rem;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .upload-sub strong {
        color: var(--blue);
        font-weight: 600;
    }

    .fmt-row {
        display: flex;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .fmt-chip {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 3px 10px;
        font-size: .72rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: .04em;
    }

    /* Tab row */
    .tab-row {
        display: flex;
        max-width: 700px;
        margin: 0 auto 14px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 4px;
        gap: 4px;
        animation: fadeUp .5s .25s ease both;
    }

    .tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 9px 12px;
        border-radius: 7px;
        font-size: .84rem;
        font-weight: 600;
        color: var(--muted);
        border: none;
        background: transparent;
        transition: all .18s;
    }

    .tab-btn svg {
        width: 15px;
        height: 15px;
    }

    .tab-btn.active {
        background: var(--white);
        color: var(--blue);
        box-shadow: var(--shadow-sm);
    }

    /* URL row */
    .url-row {
        display: none;
        gap: 8px;
        max-width: 700px;
        margin: 0 auto;
        animation: fadeUp .5s .28s ease both;
    }

    .url-input {
        flex: 1;
        padding: 12px 16px;
        background: var(--white);
        border: 1px solid var(--border2);
        border-radius: 10px;
        font-family: var(--font-b);
        font-size: .9rem;
        color: var(--text);
        outline: none;
        transition: border-color .18s, box-shadow .18s;
    }

    .url-input::placeholder {
        color: var(--muted2);
    }

    .url-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    }

    .btn-search {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 12px 24px;
        border-radius: 10px;
        background: var(--blue);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        border: none;
        white-space: nowrap;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .35);
        transition: background .18s, box-shadow .18s;
    }

    .btn-search:hover {
        background: var(--blue-dark);
        box-shadow: var(--shadow-lg);
    }

    .btn-search svg {
        width: 16px;
        height: 16px;
    }

    /* Trust row */
    .trust-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 22px;
        max-width: 700px;
        margin: 22px auto 0;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        animation: fadeUp .5s .3s ease both;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .8rem;
        color: var(--muted);
        font-weight: 500;
    }

    .trust-item svg {
        width: 15px;
        height: 15px;
        color: var(--blue);
        flex-shrink: 0;
    }

    /* ══════════════ SECTIONS ══════════════ */
    .section {
        padding: 80px 0;
    }

    .section-alt {
        background: var(--bg);
    }

    .s-label {
        display: block;
        font-size: .74rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
    }

    h2 {
        font-family: var(--font-h);
        font-size: clamp(1.55rem, 2.8vw, 2.25rem);
        font-weight: 800;
        letter-spacing: -.03em;
        line-height: 1.15;
        color: var(--text);
        margin-bottom: 12px;
    }

    .s-desc {
        font-size: .95rem;
        color: var(--muted);
        max-width: 500px;
        line-height: 1.7;
    }

    .s-head {
        margin-bottom: 48px;
    }

    .s-head.center {
        text-align: center;
    }

    .s-head.center .s-desc {
        margin: 0 auto;
    }

    /* Steps */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .step-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px 24px;
        transition: box-shadow .22s, border-color .22s, transform .22s;
    }

    .step-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--blue);
        transform: translateY(-3px);
    }

    .step-num {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: var(--blue);
        color: #fff;
        font-family: var(--font-h);
        font-size: .85rem;
        font-weight: 800;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
    }

    .step-card h3 {
        font-family: var(--font-h);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text);
    }

    .step-card p {
        font-size: .875rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* Pricing table */
    .pricing-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .pricing-table thead tr {
        background: var(--bg);
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 18px;
        text-align: left;
        border-bottom: 1px solid var(--border);
        font-size: .9rem;
    }

    .pricing-table th {
        font-family: var(--font-h);
        font-size: .76rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--muted);
    }

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

    .pricing-table tbody tr:hover td {
        background: var(--bg);
    }

    .plan-cell {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: .98rem;
    }

    .plan-free {
        color: var(--muted);
    }

    .plan-pro {
        color: var(--blue);
    }

    .popular-badge {
        display: inline-block;
        background: var(--blue);
        color: #fff;
        font-size: .66rem;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 99px;
        margin-left: 7px;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .price-val {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: 1.05rem;
    }

    .check-y {
        color: var(--green);
    }

    .check-n {
        color: var(--muted2);
    }

    .tbl-btn {
        padding: 7px 18px;
        border-radius: 8px;
        font-size: .8rem;
        font-weight: 700;
        font-family: var(--font-b);
        transition: all .18s;
    }

    .tbl-btn-outline {
        border: 1.5px solid var(--border2);
        background: transparent;
        color: var(--text2);
    }

    .tbl-btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .tbl-btn-fill {
        border: none;
        background: var(--blue);
        color: #fff;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .3);
    }

    .tbl-btn-fill:hover {
        background: var(--blue-dark);
    }

    /* Benefits */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .benefit-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 26px 22px;
        transition: box-shadow .22s, transform .22s;
    }

    .benefit-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
    }

    .b-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
    }

    .b-icon svg {
        width: 22px;
        height: 22px;
    }

    .b-icon.blue {
        background: var(--blue-light);
        color: var(--blue);
    }

    .b-icon.green {
        background: #f0fdf4;
        color: #16a34a;
    }

    .b-icon.orange {
        background: #fff7ed;
        color: #ea580c;
    }

    .b-icon.purple {
        background: #f5f3ff;
        color: #7c3aed;
    }

    .b-icon.teal {
        background: #f0fdfa;
        color: #0d9488;
    }

    .b-icon.pink {
        background: #fdf2f8;
        color: #db2777;
    }

    .benefit-card h3 {
        font-family: var(--font-h);
        font-size: .98rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text);
    }

    .benefit-card p {
        font-size: .875rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* Users */
    .users-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .user-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 22px 20px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: box-shadow .2s, transform .2s;
    }

    .user-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .u-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--blue-light);
        color: var(--blue);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

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

    .user-card h3 {
        font-family: var(--font-h);
        font-size: .92rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--text);
    }

    .user-card p {
        font-size: .84rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* FAQ */
    .faq-inner {
        max-width: 700px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
    }

    .faq-q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 20px 0;
        background: none;
        border: none;
        font-family: var(--font-b);
        font-size: .93rem;
        font-weight: 600;
        color: var(--text);
        text-align: left;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: var(--bg);
        border: 1px solid var(--border);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        transition: background .2s, border-color .2s;
    }

    .faq-toggle svg {
        width: 14px;
        height: 14px;
        color: var(--muted);
        transition: transform .3s, color .2s;
    }

    .faq-item.open .faq-toggle {
        background: var(--blue-light);
        border-color: var(--blue-mid);
    }

    .faq-item.open .faq-toggle svg {
        transform: rotate(45deg);
        color: var(--blue);
    }

    .faq-body {
        max-height: 0;
        overflow: hidden;
        font-size: .9rem;
        color: var(--muted);
        line-height: 1.7;
        transition: max-height .32s ease, padding .32s;
        padding: 0;
    }

    .faq-item.open .faq-body {
        max-height: 200px;
        padding-bottom: 18px;
    }

    /* CTA */
    .cta-box {
        background: var(--blue);
        border-radius: 20px;
        padding: 64px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-box::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    }

    .cta-box h2 {
        color: #fff;
        margin-bottom: 12px;
    }

    .cta-box p {
        color: rgba(255, 255, 255, .75);
        margin-bottom: 32px;
        font-size: .98rem;
    }

    .cta-btns {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn-white {
        padding: 13px 30px;
        border-radius: 9px;
        background: #fff;
        color: var(--blue);
        font-size: .9rem;
        font-weight: 700;
        border: none;
        transition: opacity .18s, transform .15s;
    }

    .btn-white:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

    .btn-outline-w {
        padding: 13px 24px;
        border-radius: 9px;
        background: transparent;
        color: #fff;
        font-size: .9rem;
        font-weight: 600;
        border: 1.5px solid rgba(255, 255, 255, .4);
        transition: border-color .18s;
    }

    .btn-outline-w:hover {
        border-color: rgba(255, 255, 255, .9);
    }

    /* Footer */
    footer {
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 56px 0 28px;
    }

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

    .footer-brand p {
        font-size: .875rem;
        color: var(--muted);
        margin-top: 12px;
        line-height: 1.7;
        max-width: 250px;
    }

    .footer-col h4 {
        font-family: var(--font-h);
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: var(--text2);
        margin-bottom: 14px;
    }

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

    .footer-col li {
        margin-bottom: 9px;
    }

    .footer-col a {
        font-size: .875rem;
        color: var(--muted);
        transition: color .18s;
    }

    .footer-col a:hover {
        color: var(--blue);
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 22px;
        border-top: 1px solid var(--border);
        font-size: .82rem;
        color: var(--muted2);
    }

    .socials {
        display: flex;
        gap: 8px;
    }

    .soc-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        border: 1px solid var(--border2);
        background: var(--white);
        display: grid;
        place-items: center;
        color: var(--muted);
        transition: border-color .18s, color .18s;
    }

    .soc-btn svg {
        width: 15px;
        height: 15px;
    }

    .soc-btn:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    /* Responsive */
    @media (max-width: 960px) {
        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

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

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

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

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

    @media (max-width: 640px) {

        .benefits-grid,
        .users-grid {
            grid-template-columns: 1fr;
        }

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

        .tab-row {
            flex-direction: column;
        }

        .url-row {
            flex-direction: column;
        }

        .cta-box {
            padding: 44px 24px;
        }

        .hero {
            padding: 48px 0 36px;
        }

        .upload-box {
            padding: 32px 20px 26px;
        }
    }
