html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reference-primary-btn {
    position: relative;
    background: #ffffff;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-primary-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(90deg, #2563eb, #dc2626, #eab308, #16a34a);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.reference-primary-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 98px;
    background: rgba(37, 99, 235, 0.05);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.reference-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.reference-primary-btn:hover::after {
    opacity: 1;
}

.tapqr-header-shell {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 50;
    pointer-events: none;
    animation: tapqrHeaderIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tapqr-header-pill {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    pointer-events: auto;
    background: #ffffff !important;
    border-color: rgba(212, 212, 216, 0.9);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tapqr-header-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
}

.tapqr-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(24, 24, 27, 0.12);
    background: #0a0a0a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.tapqr-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.tapqr-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.tapqr-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.tapqr-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.tapqr-mobile-panel {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 5.75rem;
    height: min(50vh, 380px);
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid rgba(212, 212, 216, 0.9);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.24s ease;
    overflow: hidden;
}

body.mobile-nav-open .tapqr-mobile-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.legal-hero {
    background: #ffffff;
}

.legal-card {
    border: 1px solid rgba(228, 228, 231, 0.85);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.legal-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    box-shadow: 0 0 0 6px #ffffff;
}

.legal-stat {
    border: 1px solid rgba(228, 228, 231, 0.9);
    background: #ffffff;
}

@media (min-width: 1024px) {
    .tapqr-header-shell {
        padding: 1.5rem 1.5rem 0;
    }

    .tapqr-menu-toggle,
    .tapqr-mobile-panel {
        display: none;
    }
}

@media (max-width: 640px) {
    .tapqr-header-shell {
        padding: 0.75rem;
    }

    .tapqr-mobile-panel {
        left: 0.75rem;
        right: 0.75rem;
        top: 5.25rem;
    }
}

@keyframes tapqrHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

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

.about-page {
    background: #ffffff;
    color: #18181b;
}

.about-main {
    background: #ffffff;
}

.about-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero {
    min-height: 100vh;
    padding: 136px 0 72px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
        url("bg.svg") center / cover no-repeat;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.about-hero-copy {
    max-width: 680px;
}

.about-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 800;
    color: #71717a;
}

.about-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.about-breadcrumb a:hover {
    color: #dc2626;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0;
    border: 1px solid rgba(24, 24, 27, 0.16);
    border-radius: 999px;
    background: #ffffff;
    padding: 8px 16px;
    color: #18181b;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.about-kicker.blue {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.24);
    background: #eff6ff;
}

.about-kicker.red {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.24);
    background: #fef2f2;
}

.about-kicker.yellow {
    color: #b45309;
    border-color: rgba(234, 179, 8, 0.32);
    background: #fefce8;
}

.about-kicker.green {
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.24);
    background: #f0fdf4;
}

.about-kicker.light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.about-hero h1,
.about-section-heading h2,
.about-cta-panel h2 {
    margin: 18px 0 0;
    color: #09090b;
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0;
}

.about-hero h1 {
    max-width: 760px;
    font-size: 76px;
}

.about-lead,
.about-section-heading p,
.about-cta-panel p {
    color: #52525b;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}

.about-lead {
    max-width: 620px;
    margin: 24px 0 0;
}

.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 32px;
}

.about-cta-row.center {
    justify-content: center;
}

.about-main-action,
.about-secondary-action {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.about-main-action {
    color: #09090b;
}

.about-secondary-action {
    border: 1px solid rgba(24, 24, 27, 0.14);
    background: #18181b;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-secondary-action:hover {
    transform: translateY(-2px);
    background: #000000;
}

.about-secondary-action.light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.about-secondary-action.light:hover {
    background: rgba(255, 255, 255, 0.08);
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 36px 0 0;
    max-width: 620px;
}

.about-stat-grid div {
    border: 1px solid rgba(228, 228, 231, 0.95);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    padding: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.about-stat-grid dt {
    color: #09090b;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.about-stat-grid dd {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.about-visual {
    position: relative;
    border: 1px solid rgba(228, 228, 231, 0.9);
    border-radius: 30px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.about-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.about-visual-strip {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    border: 1px solid rgba(228, 228, 231, 0.9);
    border-radius: 20px;
    background: #fafafa;
    padding: 16px;
}

.about-visual-strip span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-visual-strip strong {
    color: #18181b;
    font-size: 15px;
    line-height: 1.4;
}

.about-section {
    padding: 96px 0;
    background: #ffffff;
}

.about-band {
    background: #fafafa;
    border-top: 1px solid rgba(228, 228, 231, 0.72);
    border-bottom: 1px solid rgba(228, 228, 231, 0.72);
}

.about-section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.about-section-heading.align-left {
    margin: 0;
    text-align: left;
}

.about-section-heading h2,
.about-cta-panel h2 {
    font-size: 52px;
}

.about-section-heading p {
    margin: 18px 0 0;
}

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

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

.about-card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card,
.about-story-panel {
    border: 1px solid rgba(228, 228, 231, 0.95);
    border-radius: 24px;
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.about-card h3,
.about-story-panel h3,
.about-step-list h3 {
    margin: 0;
    color: #09090b;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.about-card p,
.about-story-panel p,
.about-step-list p,
.about-faq-list p {
    margin: 12px 0 0;
    color: #5f6368;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.about-icon-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-bottom: 22px;
    border-radius: 999px;
}

.about-icon-dot.blue {
    background: #2563eb;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12);
}

.about-icon-dot.red {
    background: #dc2626;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.12);
}

.about-icon-dot.yellow {
    background: #eab308;
    box-shadow: 0 0 0 8px rgba(234, 179, 8, 0.16);
}

.about-story-grid,
.about-trust-grid,
.about-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: start;
}

.about-story-panel {
    border-top: 4px solid #dc2626;
}

.about-story-panel ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.about-story-panel li {
    position: relative;
    padding-left: 26px;
    color: #3f3f46;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.55;
}

.about-story-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #16a34a;
}

.about-step-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-step-list li {
    border: 1px solid rgba(228, 228, 231, 0.95);
    border-radius: 24px;
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.about-step-list span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #18181b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.about-dark {
    background: #09090b;
    color: #ffffff;
}

.about-dark .about-section-heading h2,
.about-dark .about-section-heading p {
    color: #ffffff;
}

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

.about-business-grid span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    padding: 15px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.about-card-stack {
    display: grid;
    gap: 16px;
}

.about-card.border-blue {
    border-left: 5px solid #2563eb;
}

.about-card.border-red {
    border-left: 5px solid #dc2626;
}

.about-card.border-green {
    border-left: 5px solid #16a34a;
}

.about-faq-list {
    display: grid;
    gap: 14px;
}

.about-faq-list details {
    border: 1px solid rgba(228, 228, 231, 0.95);
    border-radius: 22px;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.about-faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    color: #09090b;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

.about-faq-list details[open] summary {
    color: #2563eb;
}

.about-faq-list p {
    margin: 0;
    padding: 0 24px 22px;
    border-top: 1px solid rgba(228, 228, 231, 0.75);
}

.about-final-cta {
    padding-top: 0;
}

.about-cta-panel {
    border-radius: 32px;
    background: #09090b;
    padding: 64px 28px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

.about-cta-panel h2,
.about-cta-panel p {
    color: #ffffff;
}

.about-cta-panel p {
    max-width: 690px;
    margin: 18px auto 0;
}

@media (max-width: 1023px) {
    .about-hero {
        min-height: auto;
        padding-top: 124px;
    }

    .about-hero-grid,
    .about-story-grid,
    .about-trust-grid,
    .about-faq-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-card-grid.three,
    .about-card-grid.four,
    .about-step-list,
    .about-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-section-heading.align-left {
        max-width: 760px;
    }

    .about-hero h1 {
        font-size: 58px;
    }

    .about-section-heading h2,
    .about-cta-panel h2 {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .about-shell {
        padding: 0 18px;
    }

    .about-hero {
        padding: 112px 0 56px;
    }

    .about-hero h1 {
        font-size: 42px;
        line-height: 1;
    }

    .about-section-heading h2,
    .about-cta-panel h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    .about-lead,
    .about-section-heading p,
    .about-cta-panel p {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-stat-grid,
    .about-card-grid.three,
    .about-card-grid.four,
    .about-step-list,
    .about-business-grid {
        grid-template-columns: 1fr;
    }

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

    .about-final-cta {
        padding-top: 0;
    }

    .about-card,
    .about-story-panel,
    .about-step-list li {
        padding: 22px;
    }

    .about-cta-panel {
        border-radius: 26px;
        padding: 44px 22px;
    }

    .about-main-action,
    .about-secondary-action {
        width: 100%;
    }
}
