:root {
    --ink: #10212b;
    --muted: #5d6d78;
    --line: #dde6ea;
    --paper: #ffffff;
    --soft: #f4f8f7;
    --brand: #18c0a8;
    --brand-dark: #0f8f80;
    --accent: #18c0a8;
    --gold: #f2b84b;
    --primary: #18c0a8;
    --primary-dark: #0f8f80;
    --secondary: #22d3c5;
    --dark: #101828;
    --text: #344054;
    --light: #f2fffc;
    --border: #c8f2ea;
    --success: #12b76a;
    --radius: 24px;
    --shadow: 0 18px 45px rgba(16, 24, 40, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 231, 255, 0.85);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 128px;
    max-width: 34vw;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-links > a:not(.button) {
    position: relative;
    display: inline-grid;
    min-height: 36px;
    place-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links > a.is-active:not(.button) {
    color: var(--primary);
}

.nav-links > a.is-active:not(.button)::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(11, 92, 255, 0.22);
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.button.secondary {
    background: #fff;
    color: var(--primary);
    border-color: var(--border);
    box-shadow: none;
}

.button.dark {
    border-color: var(--dark);
    background: var(--dark);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.18);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 20%, rgba(242, 184, 75, 0.3), transparent 26%),
        linear-gradient(135deg, rgba(8, 34, 40, 0.96), rgba(0, 127, 120, 0.9));
    background-size: cover;
    background-position: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    gap: 56px;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
    color: #fff;
}

.hero-copy {
    max-width: 720px;
}

.hero-visual {
    justify-self: end;
    width: min(100%, 330px);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(3, 24, 28, 0.38);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.eyebrow {
    margin: 0 0 14px;
    color: #d3f4ec;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero p {
    max-width: 600px;
    margin: 22px 0 0;
    color: #ecfffb;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #edfffb;
    font-size: 13px;
    font-weight: 800;
}

.mobile-download-cta {
    display: none;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 176px;
    min-width: 0;
    min-height: 0;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--dark);
    color: #fff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.store-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
}

.app-download-panel {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.app-proof-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.app-proof-panel div {
    min-height: 128px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(4, 95, 93, 0.96), rgba(0, 127, 120, 0.92));
    color: #fff;
}

.app-proof-panel strong {
    display: block;
    font-size: 24px;
    line-height: 1.08;
}

.app-proof-panel span {
    display: block;
    margin-top: 8px;
    color: #d8efed;
    font-size: 13px;
    font-weight: 700;
}

.app-benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    background: #fff;
}

.app-benefit-index {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 127, 120, 0.1);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.app-benefit strong {
    display: block;
    color: var(--brand-dark);
    font-size: 18px;
}

.app-benefit p {
    margin: 6px 0 0;
    color: var(--muted);
}

.trust-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.trust-grid div {
    min-height: 112px;
    padding: 20px;
    border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;
    color: var(--brand-dark);
    font-size: 15px;
}

.trust-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.why-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f7fbfa);
}

.why-card strong {
    display: block;
    color: var(--brand-dark);
    font-size: 19px;
    line-height: 1.2;
}

.why-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

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

.testimonial-grid article {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.testimonial-grid p {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.testimonial-grid strong {
    display: block;
    color: var(--brand-dark);
    font-size: 15px;
    line-height: 1.05;
}

.testimonial-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

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

.life-grid article {
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f7fbfa);
}

.life-grid span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.life-grid strong {
    display: block;
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.2;
}

.life-grid p {
    margin: 10px 0 0;
    color: var(--muted);
}

.section {
    padding: 84px 0;
}

.section.soft {
    background: var(--soft);
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-head h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

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

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

.service-directory {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.service-directory article {
    min-height: 190px;
    padding: 22px;
    background: #fff;
}

.service-directory span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-directory strong {
    display: block;
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.2;
}

.service-directory p {
    margin: 10px 0 0;
    color: var(--muted);
}

.feature {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e3f3ef;
    color: var(--brand-dark);
    font-weight: 900;
}

.feature h3,
.step h3,
.faq-item h3 {
    margin: 18px 0 8px;
}

.feature p,
.step p,
.faq-item p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.merchant-panel {
    padding: 34px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}

.merchant-panel p {
    color: #d7e4e8;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    padding: 22px;
    border-left: 4px solid var(--brand);
    background: #fff;
}

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

.faq-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.contact-band {
    background: var(--brand-dark);
    color: #fff;
}

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

.contact-item {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
}

.contact-item span {
    display: block;
    color: #bfe8e1;
    font-size: 13px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d5fff8;
}

.site-footer {
    padding: 50px 0 34px;
    border-top: 0;
    background: linear-gradient(180deg, #123f3d 0%, #0f2f2e 100%);
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 34px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-footer strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
}

.footer-brand {
    max-width: 520px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-compliance {
    display: grid;
    gap: 12px;
    text-align: right;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.footer-gst-logo {
    display: block;
    width: 200px;
    height: auto;
}

.footer-award-badge {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    max-width: 340px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(213, 255, 248, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: left;
}

.footer-award-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #d5fff8;
    color: #0f3f3a;
    font-size: 16px;
    line-height: 1;
}

.footer-award-badge strong {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
}

.footer-award-badge small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-license {
    color: #d5fff8;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    text-align: left;
}

.footer-license a {
    color: inherit;
    text-decoration: none;
}

.footer-license a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: right;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.about-hero {
    padding: 96px 0 64px;
    background: var(--soft);
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
}

.about-copy {
    max-width: 780px;
    color: var(--muted);
    font-size: 20px;
}

.about-hero-rich {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 18%, rgba(24, 192, 168, 0.18), transparent 32%),
        linear-gradient(180deg, #ffffff, var(--light));
}

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

.about-proof-card {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--border);
    box-shadow: var(--shadow);
}

.about-proof-card div {
    padding: 28px;
    background: #fff;
}

.about-proof-card strong {
    display: block;
    color: var(--primary-dark);
    font-size: 34px;
    line-height: 1;
}

.about-proof-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.about-story-card,
.about-service-panel {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.about-story-card {
    padding: 30px;
}

.about-story-card h3,
.about-service-panel h2 {
    margin: 0;
    color: var(--dark);
}

.about-story-card p,
.about-service-panel p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.about-feature-grid .feature {
    min-height: 240px;
    border-color: var(--border);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.about-feature-grid .icon {
    width: auto;
    min-width: 58px;
    height: 50px;
    padding: 0 12px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary);
}

.about-service-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    padding: 32px;
}

.about-service-panel .eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

.about-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-service-list span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--light);
    color: var(--dark);
    font-weight: 800;
}

.error-page {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(0, 127, 120, 0.12), rgba(240, 93, 59, 0.08)),
        var(--soft);
}

.error-shell {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
}

.error-code {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.error-shell h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
}

.error-shell p:not(.error-code) {
    max-width: 560px;
    color: var(--muted);
    font-size: 19px;
}

.auth-page {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding: 76px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 192, 168, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fffd 0%, #eef8f5 100%);
}

.auth-focused-page {
    align-items: start;
    padding: 56px 0;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 420px);
    align-items: start;
    gap: 42px;
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
}

.login-auth-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 460px);
    width: min(1040px, calc(100% - 32px));
}

.auth-focused-shell,
.login-auth-shell.auth-focused-shell {
    display: block;
    width: min(460px, calc(100% - 32px));
}

.auth-form-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 4px;
}

.auth-form-logo img {
    display: block;
    width: 124px;
    height: auto;
}

.auth-copy {
    align-self: stretch;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 520px;
    padding: 34px;
    border: 1px solid rgba(24, 192, 168, 0.16);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(18, 63, 61, 0.96), rgba(13, 82, 78, 0.92));
    color: #fff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.14);
}

.auth-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.06;
}

.auth-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.auth-copy .eyebrow {
    color: #9ff4e8;
}

.auth-highlights {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.auth-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
}

.auth-highlights span::before {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.auth-form {
    display: grid;
    gap: 15px;
    padding: 30px;
    border: 1px solid rgba(219, 231, 255, 0.9);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

.auth-form [hidden] {
    display: none !important;
}

.auth-form h2 {
    margin: 0;
    color: var(--dark);
    font-size: 24px;
}

.auth-provider-panel {
    padding: 10px;
    border: 1px solid #e4edf2;
    border-radius: 8px;
    background: #f7fbfb;
}

.efaas-login-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 8px;
    background: #12469a;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.efaas-login-button:hover {
    background: #0e3a82;
    transform: translateY(-1px);
}

.efaas-login-button img {
    display: block;
    max-width: 142px;
    max-height: 30px;
    width: auto;
    height: auto;
}

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    color: #7a8a93;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    height: 1px;
    background: #dce8ed;
    content: "";
}

.register-type-slot {
    display: grid;
    min-height: 104px;
}

.register-personal-options,
.business-register-note {
    display: grid;
    align-content: center;
}

.register-personal-options {
    gap: 12px;
}

.business-register-note {
    gap: 4px;
    min-height: 104px;
    padding: 13px 14px;
    border: 1px solid rgba(24, 192, 168, 0.28);
    border-radius: 8px;
    background: #f2fffc;
}

.business-register-note strong {
    color: var(--dark);
    font-size: 14px;
}

.business-register-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.account-type-field {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
    border: 0;
}

.account-type-field legend {
    grid-column: 1 / -1;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.account-type-field label {
    position: relative;
    display: grid;
    min-height: 74px;
    cursor: pointer;
}

.account-type-field input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-field span {
    display: grid;
    gap: 4px;
    align-content: center;
    padding: 12px;
    border: 1px solid #dce8ed;
    border-radius: 8px;
    background: #f7fbfb;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.account-type-field strong {
    color: var(--dark);
    font-size: 14px;
}

.account-type-field small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.account-type-field input:checked + span {
    border-color: rgba(24, 192, 168, 0.65);
    background: #eafffa;
    box-shadow: inset 0 0 0 1px rgba(24, 192, 168, 0.28);
}

.qr-login-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid #dbeeff;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fbff, #f2fffc);
    text-align: left;
}

.qr-login-kicker {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #e6fbf7;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.qr-login-card strong {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 15px;
}

.qr-login-card p {
    max-width: 240px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.qr-login-card img {
    display: block;
    width: 96px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.auth-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.auth-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #cbd8dd;
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-form input:focus {
    outline: 2px solid rgba(0, 127, 120, 0.22);
    border-color: var(--brand);
}

.password-control {
    position: relative;
    display: block;
}

.password-control input {
    padding-right: 52px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #667085;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
    transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: #f2fffc;
    color: var(--primary);
    outline: none;
}

.password-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.password-icon-hide,
.password-toggle.is-visible .password-icon-show {
    display: none;
}

.password-toggle.is-visible .password-icon-hide {
    display: block;
}

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

.auth-form-links.single {
    grid-template-columns: 1fr;
}

.auth-helper-link {
    display: grid;
    gap: 3px;
    min-height: 58px;
    align-content: center;
    padding: 10px 12px;
    border: 1px solid #e0edf0;
    border-radius: 8px;
    background: #f7fbfb;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.auth-helper-link strong {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
}

.auth-helper-link:hover {
    border-color: rgba(24, 192, 168, 0.4);
    background: #effaf7;
    transform: translateY(-1px);
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.form-note a {
    color: var(--brand-dark);
    font-weight: 700;
}

.form-message {
    min-height: 22px;
    color: var(--muted);
    font-size: 14px;
}

.form-message.success {
    color: var(--brand-dark);
}

.form-message.error {
    color: #b42318;
}

.auth-focused-page {
    min-height: 100vh;
    align-items: start;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(21, 183, 158, 0.2), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #250048 0%, #250048 70%, #f0fdf9 70%, #f0fdf9 100%);
}

.auth-focused-shell,
.login-auth-shell.auth-focused-shell {
    width: min(482px, calc(100% - 32px));
}

.auth-focused-shell .auth-form {
    gap: 16px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.auth-focused-shell .auth-form-logo {
    margin-bottom: 10px;
}

.auth-focused-shell .auth-form-logo img {
    width: 132px;
}

.auth-focused-shell .auth-form h2 {
    margin-bottom: 2px;
    color: #0a0a0a;
    font-size: 26px;
    line-height: 1.18;
}

.auth-focused-shell .auth-provider-panel,
.auth-focused-shell .qr-login-card,
.auth-focused-shell .business-register-note {
    border-color: #d9f7f1;
    border-radius: 16px;
    background: #f0fdf9;
}

.auth-focused-shell .efaas-login-button {
    border-radius: 12px;
}

.auth-focused-shell .auth-divider {
    color: #6b7280;
}

.auth-focused-shell .auth-divider::before,
.auth-focused-shell .auth-divider::after {
    background: #d9eee9;
}

.auth-focused-shell .auth-form label,
.auth-focused-shell .account-type-field legend,
.auth-focused-shell .account-type-field strong,
.auth-focused-shell .qr-login-card strong {
    color: #0a0a0a;
}

.auth-focused-shell .auth-form input {
    border-color: #cfdedb;
    border-radius: 12px;
    color: #0a0a0a;
}

.auth-focused-shell .auth-form input:focus {
    outline: 3px solid rgba(21, 183, 158, 0.2);
    border-color: #15b79e;
}

.auth-focused-shell .account-type-field span,
.auth-focused-shell .auth-helper-link {
    border-color: #d9eee9;
    border-radius: 14px;
    background: #f8fffd;
}

.auth-focused-shell .account-type-field small,
.auth-focused-shell .auth-helper-link,
.auth-focused-shell .qr-login-card p {
    color: #667085;
}

.auth-focused-shell .account-type-field input:checked + span {
    border-color: rgba(21, 183, 158, 0.75);
    background: #ccfbef;
    box-shadow: inset 0 0 0 1px rgba(21, 183, 158, 0.22);
}

.auth-focused-shell .button {
    border-radius: 999px;
    background: #15b79e;
    box-shadow: none;
}

.auth-focused-shell .button:hover {
    background: #0e9384;
}

.auth-focused-shell .auth-helper-link strong,
.auth-focused-shell .qr-login-kicker {
    color: #0e9384;
}

.auth-focused-shell .qr-login-kicker {
    background: #ccfbef;
}

.auth-focused-shell .auth-helper-link:hover {
    border-color: rgba(21, 183, 158, 0.45);
    background: #f0fdf9;
}

.auth-focused-shell .password-toggle {
    border-radius: 10px;
}

.auth-focused-shell .password-toggle:hover,
.auth-focused-shell .password-toggle:focus-visible {
    background: #f0fdf9;
    color: #0e9384;
}

@media (min-width: 900px) {
    .auth-focused-page:has(.login-auth-shell),
    .auth-focused-page:has(.register-auth-shell),
    .auth-focused-page:has(.reset-auth-shell) {
        align-items: center;
        padding: 24px 0;
    }

    .auth-focused-page:has(.register-auth-shell) {
        padding: 12px 0;
    }

    .login-auth-shell.auth-focused-shell {
        width: min(760px, calc(100% - 32px));
    }

    .register-auth-shell.auth-focused-shell {
        width: min(520px, calc(100% - 32px));
    }

    .reset-auth-shell.auth-focused-shell {
        width: min(480px, calc(100% - 32px));
    }

    .login-auth-shell.auth-focused-shell .auth-form {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 13px 18px;
        padding: 24px;
    }

    .reset-auth-shell.auth-focused-shell .auth-form {
        gap: 12px;
        padding: 24px;
    }

    .register-auth-shell.auth-focused-shell .auth-form {
        gap: 10px;
        padding: 20px 24px;
    }

    .login-auth-shell.auth-focused-shell .auth-form > :not(.qr-login-card) {
        grid-column: 1;
    }

    .login-auth-shell.auth-focused-shell .auth-form > .auth-form-logo {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .login-auth-shell.auth-focused-shell .auth-form-logo,
    .register-auth-shell.auth-focused-shell .auth-form-logo,
    .reset-auth-shell.auth-focused-shell .auth-form-logo {
        margin-bottom: 0;
    }

    .login-auth-shell.auth-focused-shell .auth-form-logo img,
    .reset-auth-shell.auth-focused-shell .auth-form-logo img {
        width: 116px;
    }

    .register-auth-shell.auth-focused-shell .auth-form-logo img {
        width: 108px;
    }

    .login-auth-shell.auth-focused-shell .auth-form h2,
    .register-auth-shell.auth-focused-shell .auth-form h2,
    .reset-auth-shell.auth-focused-shell .auth-form h2 {
        margin-bottom: 0;
        font-size: 23px;
    }

    .login-auth-shell.auth-focused-shell .auth-form label,
    .register-auth-shell.auth-focused-shell .auth-form label,
    .reset-auth-shell.auth-focused-shell .auth-form label {
        gap: 5px;
    }

    .login-auth-shell.auth-focused-shell .auth-provider-panel,
    .register-auth-shell.auth-focused-shell .auth-provider-panel {
        padding: 8px;
    }

    .login-auth-shell.auth-focused-shell .efaas-login-button,
    .login-auth-shell.auth-focused-shell .auth-form input,
    .reset-auth-shell.auth-focused-shell .auth-form input {
        min-height: 44px;
    }

    .register-auth-shell.auth-focused-shell .efaas-login-button,
    .register-auth-shell.auth-focused-shell .auth-form input {
        min-height: 40px;
    }

    .login-auth-shell.auth-focused-shell .button,
    .reset-auth-shell.auth-focused-shell .button {
        min-height: 44px;
    }

    .register-auth-shell.auth-focused-shell .button {
        min-height: 42px;
    }

    .login-auth-shell.auth-focused-shell .auth-helper-link,
    .reset-auth-shell.auth-focused-shell .auth-helper-link {
        min-height: 54px;
        padding: 9px 10px;
    }

    .register-auth-shell.auth-focused-shell .auth-helper-link {
        min-height: 50px;
        padding: 8px 10px;
    }

    .register-auth-shell.auth-focused-shell .account-type-field label {
        min-height: 56px;
    }

    .register-auth-shell.auth-focused-shell .account-type-field span {
        padding: 8px 12px;
    }

    .register-auth-shell.auth-focused-shell .register-type-slot {
        min-height: 74px;
    }

    .register-auth-shell.auth-focused-shell .business-register-note {
        min-height: 74px;
        padding: 9px 12px;
    }

    .login-auth-shell.auth-focused-shell .qr-login-card {
        grid-column: 2;
        grid-row: 2 / span 7;
        grid-template-columns: 1fr;
        align-self: stretch;
        align-content: center;
        justify-items: center;
        gap: 14px;
        padding: 18px;
        text-align: center;
    }

    .login-auth-shell.auth-focused-shell .qr-login-card p {
        max-width: 180px;
    }

    .login-auth-shell.auth-focused-shell .qr-login-card img {
        width: 138px;
    }
}

.hero {
    min-height: auto;
    padding: 78px 0 40px;
    background:
        radial-gradient(circle at 80% 10%, rgba(34, 211, 197, 0.18), transparent 32%),
        radial-gradient(circle at 20% 20%, rgba(24, 192, 168, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f2fffc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.hero-copy {
    max-width: 720px;
}

.hero .eyebrow,
.merchant-hero .eyebrow,
.app-panel .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 8px 14px;
    border: 1px solid #d6e7ff;
    border-radius: 999px;
    background: #e6fbf7;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

.hero h1 {
    max-width: 760px;
    color: #101828;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

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

.hero p {
    max-width: 660px;
    color: #667085;
    font-size: 20px;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border-color: transparent;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(11, 92, 255, 0.22);
}

.button.secondary {
    border-color: var(--border);
    background: #fff;
    color: var(--primary);
    box-shadow: none;
}

.button.dark {
    border-color: #101828;
    background: #101828;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.18);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: #101828;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    font-size: 14px;
    font-weight: 800;
}

.trust-pill::before {
    content: "✓";
    color: #12b76a;
}

.phone-stage {
    position: relative;
    min-height: 640px;
}

.phone {
    position: absolute;
    top: 0;
    right: 8%;
    width: 330px;
    min-height: 620px;
    padding: 18px;
    border-radius: 46px;
    background: #111827;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.25);
    transform: rotate(3deg);
}

.phone-screen {
    min-height: 584px;
    overflow: hidden;
    padding: 22px;
    border-radius: 34px;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.phone-screen.app-shot {
    min-height: 646px;
    padding: 0;
    background: #f4f4f4;
}

.phone-screen.app-shot img {
    display: block;
    width: 100%;
    height: 646px;
    object-fit: cover;
    object-position: top center;
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #101828;
    font-weight: 800;
}

.balance-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 16px 32px rgba(11, 92, 255, 0.25);
}

.balance-card span {
    font-size: 13px;
    opacity: 0.85;
}

.balance-card strong {
    display: block;
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.quick {
    color: #101828;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

.quick i {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 auto 7px;
    place-items: center;
    border-radius: 16px;
    background: #e6fbf7;
    color: var(--primary);
    font-style: normal;
    font-weight: 900;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.payment-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: #e6fbf7;
    color: var(--primary);
    font-weight: 900;
}

.payment-card strong {
    display: block;
    color: #101828;
    font-size: 14px;
}

.payment-card span {
    color: #667085;
    font-size: 12px;
}

.floating-card {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 260px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.floating-card strong {
    display: block;
    color: #101828;
    font-size: 18px;
}

.floating-card p {
    margin: 8px 0 0;
    color: #667085;
}

.qr-box {
    width: 92px;
    height: 92px;
    margin-top: 14px;
    border: 8px solid #fff;
    border-radius: 14px;
    background:
        linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 22px 22px,
        linear-gradient(#111 10px, transparent 10px) 0 0 / 22px 22px,
        #fff;
    box-shadow: inset 0 0 0 1px #111;
}

.qr-card-image {
    display: block;
    width: 100%;
    margin-top: 14px;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.stats {
    padding: 18px 0 52px;
    background: var(--light);
}

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

.stat {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.stat strong {
    display: block;
    color: #101828;
    font-size: 30px;
    line-height: 1;
}

.stat span {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section {
    padding: 86px 0;
}

.section.soft {
    background: var(--light);
}

.section-head.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head h2,
.merchant-hero h2,
.app-panel h2,
.cta h2 {
    margin: 0;
    color: #101828;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.app-panel p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 18px;
}

.use-grid,
.service-grid,
.merchant-grid,
.trust-grid,
.stats-grid,
.testimonial-grid,
.steps {
    display: grid;
    gap: 18px;
}

.use-grid,
.service-grid {
    grid-template-columns: repeat(4, 1fr);
}

.merchant-grid,
.app-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
}

.trust-grid,
.steps,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.card h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 20px;
    line-height: 1.25;
}

.card p {
    margin: 0;
    color: #667085;
}

.card .icon,
.trust-grid .icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 18px;
    background: #e6fbf7;
    color: var(--primary);
    font-weight: 900;
}

.scenario {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.95)),
        radial-gradient(circle at top right, rgba(11, 92, 255, 0.18), transparent 45%);
}

.scenario span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merchant-hero {
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(0, 166, 166, 0.28), transparent 36%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.merchant-hero .eyebrow {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.merchant-hero h2 {
    color: #fff;
}

.merchant-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #344054;
    font-weight: 700;
}

.check::before {
    content: "✓";
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #e9f9f1;
    color: #12b76a;
    font-weight: 900;
}

.comparison {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: 0;
}

.comparison-row > div {
    padding: 20px 24px;
}

.comparison-row > div:first-child {
    border-right: 1px solid var(--border);
    background: #f2fffc;
    color: var(--primary);
    font-weight: 900;
}

.comparison-row strong {
    color: #101828;
}

.step-number {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}

.app-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.testimonial-grid article.card {
    min-height: 0;
    padding: 24px;
    border-color: var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.trust-grid {
    border-right: 0;
    border-left: 0;
}

.quote {
    color: #101828;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
}

.quote-meta {
    margin-top: 18px;
    color: #667085;
    font-weight: 700;
}

.cta {
    padding: 86px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 166, 166, 0.25), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
}

.cta h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.cta p {
    max-width: 660px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.cta .hero-actions {
    justify-content: center;
}

.cta .button.secondary {
    background: #fff;
    color: var(--primary);
}

@media (max-width: 960px) {
    .nav-shell {
        position: relative;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-flex;
        margin-inline-start: auto;
        transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: rgba(11, 92, 255, 0.24);
        background: var(--primary);
        color: #fff;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        gap: 8px;
        width: 100%;
        margin-top: 0;
        padding: 12px;
        border: 1px solid rgba(219, 231, 255, 0.92);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 42px rgba(16, 33, 43, 0.12);
        font-size: 13px;
        z-index: 30;
    }

    .nav-links.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border-radius: 8px;
        background: var(--light);
        color: var(--dark);
        font-weight: 700;
    }

    .nav-links a:hover {
        background: #e6fbf7;
    }

    .nav-links > a.is-active:not(.button) {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 10px 22px rgba(24, 192, 168, 0.2);
    }

    .nav-links > a.is-active:not(.button)::after {
        display: none;
    }

    .nav-links .button {
        grid-column: 1 / -1;
        min-height: 44px;
        padding: 0 14px;
        background: var(--primary);
        color: #fff;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner,
    .hero-grid,
    .merchant-grid,
    .app-panel {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 54px 0;
    }

    .hero-grid,
    .merchant-grid,
    .app-panel {
        padding: 0;
    }

    .hero-visual {
        justify-self: start;
        width: min(100%, 300px);
    }

    .phone-stage {
        min-height: 600px;
    }

    .phone {
        position: absolute;
        right: 50%;
        left: auto;
        width: 330px;
        margin: 0 auto;
        transform: translateX(50%) rotate(2deg);
    }

    .floating-card {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-grid,
    .use-grid,
    .trust-grid,
    .why-grid,
    .steps,
    .testimonial-grid,
    .life-grid,
    .feature-grid,
    .service-grid,
    .service-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .about-hero-grid,
    .about-service-panel,
    .faq-grid,
    .login-auth-shell,
    .auth-shell,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .qr-login-card {
        display: none;
    }

    .auth-copy {
        min-height: auto;
        padding: 26px;
    }

    .section {
        padding: 58px 0;
    }

    .mobile-download-cta {
        position: fixed;
        right: 16px;
        bottom: 16px;
        left: 16px;
        z-index: 25;
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--primary);
        color: #fff;
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 18px 38px rgba(11, 92, 255, 0.32);
    }

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

    .footer-compliance {
        text-align: left;
    }

    .footer-badges {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-gst-logo {
        width: min(200px, 100%);
    }

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

    .footer-copyright {
        order: 2;
        text-align: left;
    }

    .site-footer {
        padding-bottom: 96px;
    }
}

@media (max-width: 600px) {
    .nav-shell,
    .wrap,
    .hero-inner,
    .auth-shell,
    .footer-inner {
        width: min(100% - 24px, 1120px);
    }

    .brand-logo {
        width: 116px;
        max-width: 48vw;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        min-height: 44px;
    }

    .nav-links .button {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-self: center;
        width: min(78vw, 260px);
        border-radius: 24px;
    }

    .store-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .app-proof-panel {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .use-grid,
    .trust-grid,
    .service-grid,
    .feature-grid,
    .steps,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-row > div:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .phone-stage {
        min-height: 600px;
    }

    .phone {
        width: 300px;
        min-height: 560px;
        padding: 14px;
        border-radius: 38px;
        transform: translateX(50%) rotate(2deg);
    }

    .phone-screen {
        min-height: 532px;
        padding: 18px;
    }

    .floating-card {
        position: absolute;
        bottom: 10px;
        width: 260px;
        margin-top: 0;
        transform: translateX(-50%);
    }

    .button,
    .store-button {
        width: 100%;
    }

    .trust-grid div,
    .feature,
    .faq-item,
    .contact-item,
    .step {
        padding: 18px;
    }

    .merchant-panel,
    .auth-form {
        padding: 22px;
    }

    .about-hero {
        padding: 62px 0 44px;
    }

    .about-copy,
    .section-head p,
    .auth-copy p:not(.eyebrow) {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .nav-links.is-open {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .about-hero h1,
    .auth-copy h1 {
        font-size: 36px;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .auth-page {
        padding: 42px 0;
    }

    .account-type-field {
        grid-template-columns: 1fr;
    }

    .account-type-field label {
        min-height: 62px;
    }

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

.home-sample {
    --primary: #18c0a8;
    --primary-dark: #0f8f80;
    --secondary: #22d3c5;
    --dark: #101828;
    --text: #344054;
    --muted: #667085;
    --light: #f2fffc;
    --soft: #e6fbf7;
    --border: #c8f2ea;
    --success: #12b76a;
    --radius: 24px;
    --shadow: 0 18px 45px rgba(16, 24, 40, 0.10);
    color: var(--text);
    background: #fff;
}

.home-sample .wrap {
    width: min(1180px, calc(100% - 32px));
}

.home-sample .hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 78px 0 40px;
    background:
        radial-gradient(circle at 80% 10%, rgba(34, 211, 197, 0.18), transparent 32%),
        radial-gradient(circle at 20% 20%, rgba(24, 192, 168, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f2fffc 100%);
}

.home-sample .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.home-sample .hero .eyebrow,
.home-sample .merchant-hero .eyebrow,
.home-sample .app-panel .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

.home-sample .hero h1 {
    margin: 0;
    max-width: 760px;
    color: var(--dark);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.home-sample .hero h1 span {
    color: var(--primary);
}

.home-sample .hero-copy > p {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 20px;
}

.home-sample .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.home-sample .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-sample .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    font-size: 14px;
    font-weight: 800;
}

.home-sample .phone-stage {
    position: relative;
    min-height: 700px;
}

.home-sample .phone {
    position: absolute;
    top: 0;
    right: 8%;
    left: auto;
    width: 342px;
    min-height: 682px;
    padding: 18px;
    border-radius: 46px;
    background: #111827;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.25);
    transform: rotate(3deg);
}

.home-sample .phone-screen {
    min-height: 646px;
    overflow: hidden;
    padding: 22px;
    border-radius: 34px;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.home-sample .phone-screen.app-shot {
    min-height: 646px;
    padding: 0;
    background: #f4f4f4;
}

.home-sample .phone-screen.app-shot img {
    display: block;
    width: 100%;
    height: 646px;
    object-fit: cover;
    object-position: top center;
}

.home-sample .floating-card {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 260px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: none;
}

.home-sample .qr-card-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 14px;
    border-radius: 14px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.home-sample .stats {
    padding: 18px 0 52px;
    background: var(--light);
}

.home-sample .stats-grid,
.home-sample .use-grid,
.home-sample .service-grid,
.home-sample .merchant-grid,
.home-sample .trust-grid,
.home-sample .steps,
.home-sample .testimonial-grid {
    display: grid;
    gap: 18px;
}

.home-sample .stats-grid,
.home-sample .service-grid,
.home-sample .use-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-sample .merchant-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
}

.home-sample .trust-grid,
.home-sample .steps,
.home-sample .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-sample .stat,
.home-sample .card,
.home-sample .testimonial-grid article.card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.home-sample .stat {
    border-radius: 22px;
}

.home-sample .section {
    padding: 86px 0;
}

.home-sample .section.soft {
    background: var(--light);
}

.home-sample .section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.home-sample .section-head.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-sample .section-head h2,
.home-sample .merchant-hero h2,
.home-sample .app-panel h2,
.home-sample .cta h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-sample .section-head p,
.home-sample .app-panel p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.home-sample .card h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.25;
}

.home-sample .card p {
    margin: 0;
    color: var(--muted);
}

.home-sample .scenario {
    justify-content: flex-start;
    gap: 32px;
}

.home-sample .icon,
.home-sample .card .icon,
.home-sample .trust-grid .icon {
    display: grid;
    width: 50px;
    height: 50px;
    min-height: 0;
    padding: 0;
    margin-bottom: 18px;
    place-items: center;
    border: 0;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
}

.home-sample .security-icon {
    width: auto;
    min-width: 58px;
    padding: 0 12px;
    font-size: 13px;
    letter-spacing: 0;
}

.home-sample .service-icon {
    width: auto;
    min-width: 64px;
    padding: 0 12px;
    font-size: 13px;
    letter-spacing: 0;
}

.home-sample .merchant-hero {
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 197, 0.28), transparent 36%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow);
}

.home-sample .merchant-hero h2 {
    color: #fff;
}

.home-sample .merchant-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.home-sample .comparison {
    display: block;
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.home-sample .comparison-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--border);
}

.home-sample .comparison-row:last-child {
    border-bottom: 0;
}

.home-sample .comparison-row > div {
    min-width: 0;
    padding: 20px 24px;
    color: var(--text);
    writing-mode: horizontal-tb;
    white-space: normal;
}

.home-sample .comparison-row > div:first-child {
    border-right: 1px solid var(--border);
    background: #f2fffc;
    color: var(--primary);
    font-weight: 900;
}

.home-sample .comparison-row strong {
    color: var(--dark);
}

.home-sample .app-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--shadow);
}

.home-sample .store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-sample .store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 176px;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--dark);
    color: #fff;
    font-weight: 900;
}

.home-sample .cta {
    padding: 86px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 166, 166, 0.25), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
}

.home-sample .cta h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.home-sample .cta p {
    max-width: 660px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

@media (max-width: 960px) {
    .home-sample .hero-grid,
    .home-sample .merchant-grid,
    .home-sample .app-panel {
        grid-template-columns: 1fr;
    }

    .home-sample .phone-stage {
        min-height: 700px;
    }

    .home-sample .phone {
        right: 50%;
        left: auto;
        transform: translateX(50%) rotate(2deg);
    }

    .home-sample .floating-card {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-sample .stats-grid,
    .home-sample .use-grid,
    .home-sample .service-grid,
    .home-sample .trust-grid,
    .home-sample .steps,
    .home-sample .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-sample .hero {
        padding-top: 48px;
    }

    .home-sample .hero-copy > p {
        font-size: 17px;
    }

    .home-sample .hero-actions {
        flex-direction: column;
    }

    .home-sample .button {
        width: 100%;
    }

    .home-sample .stats-grid,
    .home-sample .use-grid,
    .home-sample .service-grid,
    .home-sample .trust-grid,
    .home-sample .steps,
    .home-sample .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .home-sample .comparison-row {
        grid-template-columns: 1fr;
    }

    .home-sample .comparison-row > div:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .home-sample .phone {
        width: 300px;
        min-height: 602px;
    }

    .home-sample .phone-screen.app-shot,
    .home-sample .phone-screen.app-shot img {
        min-height: 566px;
        height: 566px;
    }

    .home-sample .store-button {
        width: 100%;
        justify-content: center;
    }
}

.home-v2 {
    --v2-primary: #15b79e;
    --v2-primary-dark: #0e9384;
    --v2-purple: #250048;
    --v2-deep: #1b3331;
    --v2-mint: #ccfbef;
    --v2-mint-soft: #f0fdf9;
    --v2-text: #0a0a0a;
    --v2-muted: #666f7a;
    --v2-border: #e5e5e5;
    min-height: 100vh;
    background: #fff;
    color: var(--v2-text);
}

.home-v2 a {
    color: inherit;
}

.v2-wrap {
    width: min(1216px, calc(100% - 32px));
    margin: 0 auto;
}

.v2-wrap.narrow {
    width: min(802px, calc(100% - 32px));
}

.v2-hero {
    position: relative;
    min-height: 832px;
    overflow: hidden;
    border-bottom-left-radius: 144px;
    background: var(--v2-purple);
    color: #f8f5ff;
}

.v2-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 24px max(112px, calc((100vw - 1216px) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(37, 0, 72, 0.72);
    box-shadow: 0 14px 34px rgba(37, 0, 72, 0.18);
    backdrop-filter: blur(18px);
}

.v2-brand img,
.v2-footer-logo img {
    display: block;
    width: 132px;
    height: auto;
}

.v2-nav-toggle {
    display: none;
}

.v2-mobile-signin {
    display: none;
}

.v2-nav-links {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    justify-self: center;
    width: 402px;
    min-height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.home-v2 .v2-nav-links a {
    min-height: 40px;
    padding: 10px 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: color 160ms ease, background 160ms ease;
}

.home-v2 .v2-nav-links a:hover,
.home-v2 .v2-nav-links a.is-active,
.home-v2 .v2-nav-links > a.is-active:not(.button) {
    background: transparent;
    color: #fff;
}

.home-v2 .v2-nav-links a::after,
.home-v2 .v2-nav-links > a.is-active:not(.button)::after {
    display: none;
}

html.has-mobile-menu-open,
body.has-mobile-menu-open {
    height: 100%;
    overflow: hidden;
}

body.has-mobile-menu-open {
    position: fixed;
    inset: 0;
    width: 100%;
}

html.has-mobile-menu-open .home-v2,
html.has-mobile-menu-open .v2-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
}

.home-v2 .v2-nav-links > .v2-download-link {
    display: none;
}

.home-v2 .v2-nav-links > .v2-signin-link {
    display: none;
}

.v2-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 16px;
    pointer-events: none;
    transform: translateX(39px);
}

.v2-header-download,
.v2-header-signin {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    pointer-events: auto;
    text-decoration: none;
}

.v2-header-download {
    width: 162px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.v2-header-download::after {
    display: inline-block;
    width: 48px;
    height: 20px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='48' height='20' viewBox='0 0 48 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8441 8.5087C11.86 7.2736 12.5233 6.1049 13.5756 5.458C12.9118 4.5099 11.7999 3.9088 10.6431 3.8726C9.4092 3.7431 8.2131 4.6109 7.5844 4.6109C6.9434 4.6109 5.9754 3.8855 4.933 3.9069C3.5742 3.9508 2.3075 4.7233 1.6465 5.9112C0.2255 8.3715 1.2854 11.9873 2.6466 13.976C3.3277 14.9498 4.1236 16.0376 5.1651 15.999C6.1843 15.9567 6.5649 15.3491 7.7951 15.3491C9.0139 15.3491 9.371 15.999 10.4336 15.9745C11.5272 15.9567 12.2162 14.9963 12.8734 14.0133C13.3627 13.3194 13.7392 12.5526 13.989 11.7411C12.7039 11.1975 11.8456 9.9041 11.8441 8.5087Z' fill='black'/%3E%3Cpath d='M9.837 2.5648C10.4333 1.84895 10.727 0.9289 10.6559 0C9.7449 0.09568 8.9034 0.53107 8.2991 1.21941C7.7082 1.89196 7.4006 2.7958 7.4588 3.6892C8.3701 3.6986 9.2659 3.275 9.837 2.5648Z' fill='black'/%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M36.2155 6.1156L34.0389 8.2918L26.7558 1.00866C26.9962 0.9753 27.2789 1.03755 27.5807 1.20906L36.2155 6.1156ZM37.1173 6.628L34.746 8.9988L37.1189 11.3718L39.7116 9.8987C40.5806 9.4042 40.5806 8.5961 39.7116 8.1022L37.1173 6.628ZM36.2168 11.8837L34.0389 9.7059L26.7562 16.9915C26.9965 17.0246 27.279 16.9622 27.5807 16.7912L36.2168 11.8837ZM26.0466 16.2871L33.3319 8.9988L26.0464 1.71336C26.0161 1.83533 26 1.97156 26 2.121V15.8786C26 16.0285 26.0162 16.165 26.0466 16.2871Z'/%3E%3C/svg%3E") center / contain no-repeat;
    content: "";
}

.v2-header-signin {
    width: 94px;
    background: #0e9384;
}

@media (min-width: 1101px) {
    .home-v2 .v2-header.is-over-light {
        border-bottom-color: rgba(14, 147, 132, 0.16);
        background: rgba(216, 251, 245, 0.94);
        box-shadow: 0 14px 34px rgba(14, 147, 132, 0.12);
    }

    .home-v2 .v2-header.is-over-light .v2-nav-links {
        background: rgba(14, 147, 132, 0.12);
    }

    .home-v2 .v2-header.is-over-light .v2-nav-links a {
        color: rgba(19, 78, 72, 0.66);
    }

    .home-v2 .v2-header.is-over-light .v2-nav-links a:hover,
    .home-v2 .v2-header.is-over-light .v2-nav-links a.is-active,
    .home-v2 .v2-header.is-over-light .v2-nav-links > a.is-active:not(.button) {
        color: #134e48;
    }

    .home-v2 .v2-header.is-over-light .v2-header-download {
        background: #0e9384;
    }

    .home-v2 .v2-header.is-over-light .v2-header-signin {
        background: #0e9384;
    }

    .home-v2 .v2-header.is-over-wallet {
        border-bottom-color: rgba(199, 255, 241, 0.16);
        background: rgba(27, 51, 49, 0.9);
        box-shadow: 0 14px 34px rgba(27, 51, 49, 0.18);
    }

    .home-v2 .v2-header.is-over-wallet .v2-nav-links {
        background: rgba(255, 255, 255, 0.12);
    }

    .home-v2 .v2-header.is-over-wallet .v2-nav-links a {
        color: rgba(232, 255, 251, 0.62);
    }

    .home-v2 .v2-header.is-over-wallet .v2-nav-links a:hover,
    .home-v2 .v2-header.is-over-wallet .v2-nav-links a.is-active,
    .home-v2 .v2-header.is-over-wallet .v2-nav-links > a.is-active:not(.button) {
        color: #fff;
    }

    .home-v2 .v2-header.is-over-wallet .v2-header-download {
        background: rgba(255, 255, 255, 0.16);
    }
}

.v2-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(240px, 360px);
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    width: min(1216px, calc(100% - 32px));
    min-height: 832px;
    margin: 0 auto;
    padding-top: 0;
}

.v2-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    color: #f8f5ff;
    font-size: clamp(44px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.13;
}

.v2-hero-copy p {
    max-width: 699px;
    margin: 16px 0 0;
    color: #f8f5ff;
    font-size: 20px;
    line-height: 1.4;
}

.v2-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.v2-store-row a {
    display: inline-flex;
}

.v2-store-row .v2-store-mobile-download {
    display: none;
}

.v2-store-row img {
    display: block;
    height: 40px;
    width: auto;
    max-width: none;
}

.v2-download-proof {
    flex-basis: 100%;
    color: rgba(248, 245, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.v2-store-row a:first-child img {
    width: 139px;
}

.v2-store-row a:nth-child(2) img {
    width: 153px;
}

.v2-phone-wrap {
    display: flex;
    justify-content: center;
    transform: translate(13px, 63px);
}

.v2-phone-wrap img {
    display: block;
    width: min(237px, 100%);
    height: 500px;
    padding: 10px;
    border-radius: 34px;
    background: #070707;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.v2-service-strip {
    padding: 32px 0 40px;
    background: #fff;
    border-bottom: 1px solid var(--v2-border);
}

.v2-service-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
}

.v2-service-grid article {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 140px;
    padding: 16px;
    border-radius: 12px;
    background: var(--v2-mint-soft);
}

.v2-icon,
.v2-small-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(21, 183, 158, 0.34);
    color: var(--v2-primary-dark);
    font-weight: 800;
}

.v2-service-grid .v2-icon {
    gap: 3px;
    color: #15b79e;
    font-size: 22px;
}

.v2-service-grid .v2-icon::before {
    display: none;
    content: none;
}

.v2-service-grid .v2-icon .fa-solid {
    line-height: 1;
}

.v2-service-grid strong {
    color: #134e48;
    font-size: 14px;
    line-height: 1.42;
}

.v2-section {
    padding: 120px 0;
}

.v2-section-head {
    max-width: 699px;
}

.v2-section-head.center {
    margin: 0 auto 64px;
    text-align: center;
}

.v2-section-head h2,
.v2-merchant-copy h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.17;
}

.v2-merchant-copy h2 {
    color: #0f3f39;
}

.v2-section-head p,
.v2-merchant-copy p {
    margin: 16px 0 0;
    color: var(--v2-muted);
    font-size: 20px;
    line-height: 1.4;
}

.v2-merchant-copy p {
    color: #315b55;
}

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

.v2-feature-grid article {
    display: grid;
    gap: 24px;
}

.v2-small-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.v2-feature-grid h3,
.v2-wallet-list h3,
.v2-benefit-grid h3 {
    margin: 0;
    color: var(--v2-text);
    font-size: 24px;
    line-height: 1.34;
}

.v2-feature-grid p,
.v2-wallet-list p,
.v2-benefit-grid p {
    margin: 8px 0 0;
    color: var(--v2-muted);
    font-size: 18px;
    line-height: 1.55;
}

.v2-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 456px;
    margin-top: 72px;
    border-radius: 24px;
    background: #d8ecfb;
}

.v2-image-panel img {
    display: block;
    width: 100%;
    height: 456px;
    object-fit: cover;
}

.v2-image-panel div {
    position: absolute;
    top: 72px;
    left: 72px;
    width: min(460px, calc(100% - 96px));
}

.v2-image-panel h3 {
    margin: 0;
    color: var(--v2-text);
    font-size: 32px;
    line-height: 1.2;
}

.v2-image-panel p {
    margin: 12px 0 0;
    color: #22313d;
    font-size: 17px;
}

.v2-wallet-section {
    overflow: hidden;
    padding: 120px 0;
    background: var(--v2-deep);
    color: #e8fffb;
}

.v2-wallet-grid {
    display: grid;
    grid-template-columns: minmax(0, 596px) minmax(220px, 330px);
    justify-content: space-between;
    align-items: center;
    gap: 72px;
}

.v2-wallet-section .v2-section-head {
    grid-column: 1 / -1;
    max-width: 699px;
    margin: 0 auto 48px;
    text-align: center;
}

.v2-wallet-section .v2-section-head h2 {
    color: var(--v2-primary);
}

.v2-wallet-section .v2-section-head p {
    color: rgba(232, 255, 251, 0.78);
}

.v2-wallet-list {
    display: grid;
    gap: 12px;
}

.v2-wallet-list article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 24px;
    border: 1px solid #c7fff1;
    border-radius: 24px;
}

.v2-step {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: var(--v2-primary);
    font-size: 12px;
    font-weight: 800;
}

.v2-wallet-list h3 {
    color: #f7fffd;
}

.v2-wallet-list p {
    color: rgba(232, 255, 251, 0.72);
}

.v2-wallet-phone {
    display: flex;
    justify-content: center;
}

.v2-wallet-phone img {
    display: block;
    width: min(330px, 100%);
    height: 696px;
    padding: 12px;
    border-radius: 44px;
    background: #070707;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.v2-merchant-hero {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    background: #d9f6ef;
}

.v2-merchant-hero > img {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.v2-merchant-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(227, 246, 243, 0.92), rgba(227, 246, 243, 0.42), rgba(227, 246, 243, 0));
    content: "";
}

.v2-merchant-copy {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: max(112px, calc((100vw - 1216px) / 2));
    width: min(670px, calc(100% - 32px));
    transform: translateY(-50%);
}

.v2-primary-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f7fffd;
    color: #134e48 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(24, 192, 168, 0.2);
}

.v2-primary-button:hover {
    background: #d7fff5;
    color: #0f3f39 !important;
}

.v2-merchant-copy .v2-primary-button {
    background: #0d5f54;
    color: #f7fffd !important;
    box-shadow: 0 16px 32px rgba(13, 95, 84, 0.22);
}

.v2-merchant-copy .v2-primary-button:hover {
    background: #06483f;
    color: #fff !important;
}

.v2-merchant-benefits {
    padding: 56px 0;
    background: var(--v2-mint);
}

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

.v2-benefit-grid article {
    min-height: 156px;
    padding: 24px;
    border-radius: 16px;
    background: var(--v2-mint-soft);
}

.v2-benefit-grid h3 {
    color: var(--v2-primary-dark);
}

.v2-benefit-grid p {
    font-size: 16px;
    line-height: 1.5;
}

.v2-faq {
    background: #fff;
}

.v2-faq-list {
    display: grid;
    gap: 32px;
}

.v2-faq-list details {
    border-bottom: 1px solid var(--v2-border);
    padding-bottom: 24px;
}

.v2-faq-list summary {
    cursor: pointer;
    color: var(--v2-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.v2-faq-list summary::marker {
    color: var(--v2-primary-dark);
}

.v2-faq-list p {
    max-width: 762px;
    margin: 8px 0 0;
    color: var(--v2-muted);
    font-size: 18px;
    line-height: 1.55;
}

.v2-footer {
    padding: 56px 0;
    border-top: 1px solid #f5f5f5;
    background: #fff;
}

.v2-footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr)) 260px;
    gap: 40px;
    align-items: start;
}

.v2-footer nav,
.v2-footer address {
    display: grid;
    gap: 16px;
    font-style: normal;
}

.v2-footer strong {
    color: #262626;
    font-size: 14px;
}

.v2-footer a,
.v2-footer address {
    color: #737373;
    font-size: 14px;
    text-decoration: none;
}

.v2-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.v2-contact-link i {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    background: #f5fffc;
    color: var(--v2-primary-dark);
    font-size: 11px;
}

.v2-footer-contact .fa-solid {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
}

.v2-footer-contact .v2-social-links {
    margin-top: 8px;
}

.v2-footer-contact .v2-social-links a {
    min-height: 36px;
    width: 36px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #f4fbf9;
}

.v2-footer-contact .v2-social-links a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.v2-footer-contact .v2-social-links a i {
    width: auto;
    height: auto;
    flex-basis: auto;
    border-radius: 0;
    background: transparent;
    color: var(--v2-primary-dark);
    font-size: 17px;
}

.v2-footer-contact .v2-social-links a.tw i {
    background: transparent;
    color: #111;
}

.v2-footer-contact .v2-social-links a.tg i {
    background: transparent;
    color: #229ed9;
}

.v2-footer-contact .v2-social-links a.vb i {
    background: transparent;
    color: #7360f2;
}

.v2-footer-contact .v2-social-links a.fb i {
    background: transparent;
    color: #1877f2;
    font-size: 17px;
}

.v2-app-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: #f5f5f5;
}

.v2-app-card img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.v2-app-card span {
    color: #262626;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.42;
}

.v2-footer-download {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.v2-footer-download > img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.v2-award-badge {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    width: min(260px, 100%);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(21, 183, 158, 0.18);
    border-radius: 18px;
    background: #f5fffc;
}

.v2-award-badge i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--v2-primary);
    color: #fff;
    font-size: 18px;
}

.v2-award-badge span {
    display: grid;
    gap: 3px;
}

.v2-award-badge strong {
    color: #262626;
    font-size: 12px;
    line-height: 1.25;
}

.v2-award-badge small {
    color: var(--v2-primary-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.v2-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v2-social-links a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(21, 183, 158, 0.24);
    border-radius: 999px;
    background: #f5fffc;
    color: var(--v2-primary-dark);
    font-size: 12px;
    font-weight: 800;
}

.v2-social-links a i {
    display: inline-grid;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--v2-primary);
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.v2-social-links .fa-brands {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
}

.v2-social-links a.tw i {
    background: #111;
}

.v2-social-links a.tg i {
    background: #229ed9;
}

.v2-social-links a.vb i {
    background-color: #7360f2;
}

.v2-social-links a.fb i {
    background: #1877f2;
    font-size: 14px;
}

.v2-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    color: #a3a3a3;
    font-size: 14px;
}

.v2-page {
    background: #fff;
}

.about-v2 .v2-footer {
    padding-bottom: 80px;
}

.about-v2 .v2-sub-hero .v2-primary-button {
    margin-bottom: 28px;
}

.v2-sub-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding-top: 136px;
    background:
        radial-gradient(circle at 72% 20%, rgba(219, 217, 255, 0.42), transparent 28%),
        radial-gradient(circle at 16% 70%, rgba(24, 192, 168, 0.26), transparent 32%),
        var(--v2-purple);
    color: #f8f5ff;
}

.v2-sub-hero.compact {
    min-height: 460px;
}

.v2-sub-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 680px) minmax(260px, 392px);
    gap: 72px;
    align-items: center;
}

.v2-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--v2-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v2-sub-hero h1,
.v2-legal-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
}

.v2-sub-hero p,
.v2-legal-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(248, 245, 255, 0.78);
    font-size: 20px;
    line-height: 1.45;
}

.v2-proof-grid {
    display: grid;
    gap: 16px;
}

.v2-proof-grid article,
.v2-story-card {
    padding: 28px;
    border: 1px solid rgba(248, 245, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.v2-proof-grid strong {
    display: block;
    color: #fff;
    font-size: 44px;
    line-height: 1;
}

.v2-proof-grid span {
    display: block;
    margin-top: 10px;
    color: rgba(248, 245, 255, 0.7);
    font-size: 15px;
    font-weight: 700;
}

.v2-about-story {
    display: grid;
    grid-template-columns: minmax(0, 596px) minmax(260px, 440px);
    gap: 72px;
    align-items: start;
}

.v2-story-card {
    border-color: var(--v2-border);
    background: var(--v2-mint-soft);
    backdrop-filter: none;
}

.v2-story-card h3,
.v2-legal-shell h3,
.v2-service-panel h2,
.v2-legal-shell h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 28px;
    line-height: 1.25;
}

.v2-story-card p,
.v2-service-panel p,
.v2-legal-shell p,
.v2-legal-shell li {
    margin: 14px 0 0;
    color: var(--v2-muted);
    font-size: 18px;
    line-height: 1.6;
}

.v2-legal-shell h3 {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.35;
}

.v2-legal-shell ul {
    margin: 16px 0 0;
    padding-left: 24px;
}

.v2-legal-shell li {
    margin-top: 10px;
}

.v2-legal-shell li::marker {
    color: var(--v2-primary);
}

.v2-service-panel {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(260px, 520px);
    gap: 72px;
    align-items: center;
    padding: 44px;
    border-radius: 24px;
    background: var(--v2-mint-soft);
}

.v2-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.v2-service-tags span {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(21, 183, 158, 0.28);
    border-radius: 999px;
    background: #fff;
    color: var(--v2-primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.v2-recognition-section {
    padding-top: 0;
}

.v2-recognition-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(21, 183, 158, 0.18);
    border-radius: 28px;
    background: linear-gradient(135deg, #f4fffc 0%, #ffffff 58%, #f7f3ff 100%);
}

.v2-recognition-icon {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 24px;
    background: var(--v2-deep);
    color: var(--v2-primary);
    font-size: 36px;
    box-shadow: 0 18px 38px rgba(27, 51, 49, 0.16);
}

.v2-recognition-card h2 {
    margin: 8px 0 0;
    color: #262626;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
}

.v2-recognition-card p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--v2-muted);
    font-size: 17px;
    line-height: 1.55;
}

.v2-legal-hero {
    max-width: 820px;
}

.v2-legal-section {
    background: #fff;
}

.v2-terms-table-wrap,
.v2-legal-shell {
    overflow-x: auto;
}

.v2-terms-table,
.v2-legal-shell > table {
    width: 100%;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--v2-border);
    border-radius: 18px;
    background: #fff;
    color: var(--v2-text);
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.v2-terms-table th,
.v2-terms-table td,
.v2-legal-shell > table th,
.v2-legal-shell > table td {
    padding: 18px 20px;
    border-right: 1px solid var(--v2-border);
    border-bottom: 1px solid var(--v2-border);
    vertical-align: top;
    text-align: left;
}

.v2-terms-table tr:last-child td,
.v2-terms-table tr:last-child th,
.v2-legal-shell > table tr:last-child td,
.v2-legal-shell > table tr:last-child th {
    border-bottom: 0;
}

.v2-terms-table th:last-child,
.v2-terms-table td:last-child,
.v2-legal-shell > table th:last-child,
.v2-legal-shell > table td:last-child {
    border-right: 0;
}

.v2-terms-table th:first-child,
.v2-terms-table td:first-child,
.v2-legal-shell > table th:first-child,
.v2-legal-shell > table td:first-child {
    width: 88px;
    min-width: 88px;
    color: var(--v2-primary-dark);
    font-weight: 900;
    text-align: center;
}

.v2-terms-section-row th,
.v2-terms-live-section-row td,
.v2-legal-shell > table tr:has(strong) td {
    background: var(--v2-mint-soft);
    color: var(--v2-text);
    font-size: 18px;
}

.v2-terms-section-row th:first-child,
.v2-terms-live-section-row td:first-child,
.v2-legal-shell > table tr:has(strong) td:first-child {
    color: var(--v2-primary-dark);
}

.v2-terms-table p,
.v2-legal-shell > table p {
    margin: 0;
    color: var(--v2-muted);
}

.v2-terms-table strong,
.v2-legal-shell > table strong {
    color: var(--v2-text);
}

.v2-terms-table ul,
.v2-legal-shell > table ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--v2-muted);
}

.v2-terms-table li,
.v2-legal-shell > table li {
    margin-top: 8px;
}

.v2-terms-table p + p,
.v2-legal-shell > table p + p {
    margin-top: 12px;
}

.v2-legal-shell {
    display: grid;
    gap: 40px;
}

.v2-legal-shell article {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--v2-border);
}

.v2-legal-shell article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

@media (max-width: 1100px) {
    .v2-hero {
        border-bottom-left-radius: 72px;
    }

    .v2-header,
    .v2-hero-inner {
        width: 100%;
    }

    .v2-header {
        padding-right: 16px;
        padding-left: 16px;
    }

    .home-v2 .v2-header {
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 20px;
        padding-bottom: 20px;
        background: rgba(216, 251, 245, 0.92);
        border: 0;
        border-bottom: 1px solid rgba(19, 78, 72, 0.08);
        box-shadow: 0 10px 28px rgba(19, 78, 72, 0.08);
        backdrop-filter: blur(16px);
    }

    .home-v2 .v2-mobile-signin {
        position: absolute;
        top: 20px;
        right: 70px;
        display: inline-flex;
        width: 124px;
        min-width: 124px;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 999px;
        background: #0e9384;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
    }

    .home-v2 .v2-header-actions {
        display: none;
    }

    .home-v2 .v2-header.is-menu-open {
        position: fixed;
        inset: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto minmax(0, 1fr);
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        width: auto;
        padding: 20px 16px max(28px, env(safe-area-inset-bottom));
        align-content: stretch;
        background: #12564f;
        outline: 0;
        border: 0;
        border-bottom: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        overflow: hidden;
        z-index: 1000;
    }

    .home-v2 .v2-header.is-menu-open .v2-mobile-signin {
        display: none;
    }

    .v2-hero-inner {
        width: min(100% - 32px, 920px);
    }

    .v2-nav-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .home-v2 .v2-nav-toggle {
        position: absolute;
        top: 20px;
        right: 16px;
        display: block;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #134e48;
        line-height: 0;
    }

    .home-v2 .v2-header.is-menu-open .v2-nav-toggle {
        color: #fff;
    }

    .home-v2 .v2-nav-toggle .nav-toggle-line {
        position: absolute;
        left: 9px;
        width: 21.667px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        opacity: 1;
        transform: translateY(-50%);
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .home-v2 .v2-nav-toggle .nav-toggle-line:nth-child(1) {
        top: 13.333px;
    }

    .home-v2 .v2-nav-toggle .nav-toggle-line:nth-child(2) {
        top: 20px;
    }

    .home-v2 .v2-nav-toggle .nav-toggle-line:nth-child(3) {
        top: 26.667px;
    }

    .home-v2 .v2-header.is-menu-open .v2-nav-toggle .nav-toggle-line:nth-child(1) {
        top: 20px;
        left: 50%;
        width: 28.284px;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .home-v2 .v2-header.is-menu-open .v2-nav-toggle .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .home-v2 .v2-header.is-menu-open .v2-nav-toggle .nav-toggle-line:nth-child(3) {
        top: 20px;
        left: 50%;
        width: 28.284px;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .home-v2 .v2-nav-links {
        position: fixed;
        inset: 88px 24px max(28px, env(safe-area-inset-bottom));
        transform: none;
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        gap: 0;
        width: auto;
        max-width: none;
        height: auto;
        min-height: 0;
        margin: 0 auto;
        padding: 22px 0 0;
        border: 0;
        border-top: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        outline: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .home-v2 .v2-nav-links.is-open {
        display: flex !important;
        align-content: stretch;
        align-items: stretch;
        z-index: 1001;
    }

    .home-v2 .v2-nav-links a,
    .home-v2 .v2-nav-links a:hover,
    .home-v2 .v2-nav-links a.is-active {
        display: flex;
        min-height: 62px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .home-v2 .v2-nav-links a {
        color: rgba(225, 238, 234, 0.56);
        font-size: 32px;
        font-weight: 600;
        line-height: 1.15;
        visibility: visible;
        opacity: 1;
    }

    .home-v2 .v2-nav-links a:first-child {
        margin-top: auto;
    }

    .home-v2 .v2-nav-links a:nth-child(5) {
        margin-bottom: auto;
    }

    .home-v2 .v2-nav-links a.is-active {
        background: transparent;
        color: #fff;
    }

    .v2-nav-links .v2-download-link,
    .v2-nav-links .v2-signin-link {
        margin-left: 0;
        text-align: center;
    }

    .home-v2 .v2-nav-links .v2-signin-link,
    .home-v2 .v2-nav-links .v2-download-link {
        display: flex;
        width: 100%;
        min-height: 40px;
        margin-left: 0;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    .home-v2 .v2-nav-links .v2-signin-link {
        order: 8;
        margin-top: 22px;
        background: #18c0a8;
        color: #fff;
    }

    .home-v2 .v2-nav-links .v2-download-link {
        order: 9;
        margin-top: 12px;
        background: #fff;
        color: #12564f;
    }

    .home-v2 .v2-nav-links .v2-download-link::after {
        display: inline-block;
        margin-left: 10px;
        width: 36px;
        height: 16px;
        background: url("data:image/svg+xml,%3Csvg width='36' height='16' viewBox='0 0 36 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2 7.8c0-1.9 1.5-2.8 1.6-2.9-.9-1.3-2.2-1.4-2.7-1.5-1.1-.1-2.2.7-2.8.7-.6 0-1.5-.7-2.5-.6-1.3 0-2.4.8-3.1 1.9-1.3 2.3-.3 5.7 1 7.6.6.9 1.4 1.9 2.4 1.9.9 0 1.3-.6 2.5-.6 1.1 0 1.5.6 2.5.6s1.7-.9 2.3-1.8c.5-.7.8-1.4 1-2.2-1.4-.6-2.2-1.8-2.2-3.1zM8.4 2.4c.5-.6.8-1.5.7-2.4-.8.1-1.5.4-2 1-.5.6-.9 1.4-.7 2.2.8.1 1.5-.3 2-0.8z' fill='%230E9384'/%3E%3Cpath d='M21 1.2v13.6L34 8 21 1.2z' fill='%230E9384'/%3E%3C/svg%3E") center / contain no-repeat;
        content: "";
    }

    .v2-hero-inner,
    .v2-wallet-grid {
        grid-template-columns: 1fr;
    }

    .v2-phone-wrap {
        justify-content: flex-start;
        transform: none;
    }

    .v2-service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .v2-sub-hero-grid,
    .v2-about-story,
    .v2-service-panel {
        grid-template-columns: 1fr;
    }

    .v2-sub-hero-grid,
    .v2-about-story,
    .v2-service-panel {
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .v2-hero {
        min-height: 677px;
        border-bottom-left-radius: 0;
        background:
            radial-gradient(circle at 57% 30%, rgba(219, 217, 255, 0.9) 0 9%, rgba(219, 217, 255, 0) 23%),
            radial-gradient(circle at 57% 54%, rgba(255, 255, 255, 0.55) 0 9%, rgba(255, 255, 255, 0) 25%),
            radial-gradient(circle at 22% 35%, rgba(155, 241, 230, 0.7) 0 18%, rgba(155, 241, 230, 0) 38%),
            linear-gradient(155deg, #d8fbf5 0%, #9cf0e7 44%, #27d6c0 100%);
        color: #243f42;
    }

    .v2-hero-inner {
        display: block;
        width: min(100% - 32px, 358px);
        min-height: 0;
        padding: 214px 0 0;
        text-align: center;
    }

    .v2-hero-copy h1 {
        max-width: 358px;
        color: #243f42;
        font-size: 28px;
        line-height: 1.2;
    }

    .v2-hero-copy p {
        max-width: 342px;
        margin: 13px auto 0;
        color: #243f42;
        font-size: 18px;
        line-height: 1.45;
    }

    .v2-section-head p,
    .v2-merchant-copy p {
        font-size: 17px;
    }

    .v2-store-row {
        justify-content: center;
        margin-top: 32px;
    }

    .v2-download-proof {
        color: rgba(36, 63, 66, 0.72);
        font-size: 13px;
        text-align: center;
    }

    .v2-store-row > a:not(.v2-store-mobile-download) {
        display: none;
    }

    .v2-store-row .v2-store-mobile-download {
        display: inline-flex;
        width: min(100%, 244px);
        min-height: 54px;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 999px;
        background: #0e9384;
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        line-height: 22px;
        text-decoration: none;
        box-shadow: 0 16px 32px rgba(14, 147, 132, 0.24);
        overflow: visible;
    }

    .v2-store-mobile-icons {
        display: inline-flex;
        width: auto;
        height: 23px;
        align-items: center;
        gap: 8px;
    }

    .v2-store-mobile-icons::before,
    .v2-store-mobile-icons::after {
        display: block;
        background: currentColor;
        content: "";
    }

    .v2-store-mobile-icons::before {
        width: 23px;
        height: 23px;
        mask: url("data:image/svg+xml,%3Csvg viewBox='10 8 15 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8441 16.5087C21.86 15.2736 22.5233 14.1049 23.5756 13.458C22.9118 12.5099 21.7999 11.9088 20.6431 11.8726C19.4092 11.7431 18.2131 12.6109 17.5844 12.6109C16.9434 12.6109 15.9754 11.8855 14.933 11.9069C13.5742 11.9508 12.3075 12.7233 11.6465 13.9112C10.2255 16.3715 11.2854 19.9873 12.6466 21.976C13.3277 22.9498 14.1236 24.0376 15.1651 23.999C16.1843 23.9567 16.5649 23.3491 17.7951 23.3491C19.0139 23.3491 19.371 23.999 20.4336 23.9745C21.5272 23.9567 22.2162 22.9963 22.8734 22.0133C23.3627 21.3194 23.7392 20.5526 23.989 19.7411C22.7039 19.1975 21.8456 17.9041 21.8441 16.5087Z' fill='black'/%3E%3Cpath d='M19.837 10.5648C20.4333 9.84895 20.727 8.9289 20.6559 8C19.7449 8.09568 18.9034 8.53107 18.2991 9.21941C17.7082 9.89196 17.4006 10.7958 17.4588 11.6892C18.3701 11.6986 19.2659 11.275 19.837 10.5648Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .v2-store-mobile-icons::after {
        width: 23px;
        height: 23px;
        mask: url("data:image/svg+xml,%3Csvg viewBox='12 8 15 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M22.2155 14.1156L20.0389 16.2918L12.7558 9.00866C12.9962 8.9753 13.2789 9.03755 13.5807 9.20906L22.2155 14.1156ZM23.1173 14.628L20.746 16.9988L23.1189 19.3718L25.7116 17.8987C26.5806 17.4042 26.5806 16.5961 25.7116 16.1022L23.1173 14.628ZM22.2168 19.8837L20.0389 17.7059L12.7562 24.9915C12.9965 25.0246 13.279 24.9622 13.5807 24.7912L22.2168 19.8837ZM12.0466 24.2871L19.3319 16.9988L12.0464 9.71336C12.0161 9.83533 12 9.97156 12 10.121V23.8786C12 24.0285 12.0162 24.165 12.0466 24.2871Z'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .v2-store-row img {
        display: block;
        width: auto;
        height: 44px;
        max-width: none;
    }

    .v2-store-row a::before {
        display: none;
        content: none;
    }

    .v2-store-row a:first-child img {
        width: auto;
    }

    .v2-store-row a:nth-child(2) img {
        width: auto;
    }

    .v2-phone-wrap {
        display: none;
    }

    .v2-service-strip {
        padding: 32px 0 40px;
        border-bottom: 0;
        overflow-x: auto;
    }

    .v2-service-grid {
        display: flex;
        width: max-content;
        gap: 12px;
        padding: 0 16px;
    }

    .v2-service-grid article {
        width: 132px;
        min-height: 120px;
        padding: 16px 12px 12px;
        border-radius: 8px;
    }

    .v2-service-grid strong {
        font-size: 14px;
        line-height: 1.36;
    }

    .v2-icon {
        width: 48px;
        height: 48px;
        border-radius: 999px;
        font-size: 20px;
    }

    .v2-service-grid,
    .v2-feature-grid,
    .v2-benefit-grid,
    .v2-footer-main {
        grid-template-columns: 1fr;
    }

    .v2-service-grid article {
        min-height: auto;
    }

    .v2-section,
    .v2-wallet-section {
        padding: 80px 0;
    }

    .v2-sub-hero {
        min-height: auto;
        padding: 132px 0 72px;
        background:
            radial-gradient(circle at 57% 30%, rgba(219, 217, 255, 0.64) 0 9%, rgba(219, 217, 255, 0) 23%),
            radial-gradient(circle at 22% 35%, rgba(155, 241, 230, 0.55) 0 18%, rgba(155, 241, 230, 0) 38%),
            linear-gradient(155deg, #d8fbf5 0%, #9cf0e7 44%, #27d6c0 100%);
        color: #243f42;
    }

    .v2-sub-hero.compact {
        min-height: auto;
    }

    .v2-sub-hero h1,
    .v2-legal-hero h1 {
        color: #243f42;
        font-size: 38px;
        line-height: 1.12;
    }

    .v2-sub-hero p,
    .v2-legal-hero p {
        color: rgba(36, 63, 66, 0.78);
        font-size: 18px;
    }

    .v2-sub-hero .v2-primary-button {
        background: #134e48;
        color: #fff !important;
    }

    .v2-proof-grid article {
        border-color: rgba(19, 78, 72, 0.1);
        background: rgba(255, 255, 255, 0.36);
    }

    .v2-proof-grid strong {
        color: #134e48;
    }

    .v2-proof-grid span {
        color: rgba(19, 78, 72, 0.7);
    }

    .v2-service-panel {
        padding: 28px;
    }

    .v2-service-tags span {
        min-height: 38px;
    }

    .v2-terms-table {
        min-width: 720px;
    }

    .v2-terms-table th,
    .v2-terms-table td {
        padding: 14px;
    }

    .v2-legal-shell {
        gap: 32px;
    }

    .v2-legal-shell article {
        padding-bottom: 32px;
    }

    .v2-section-head.center {
        margin-bottom: 44px;
        text-align: left;
    }

    .v2-image-panel {
        display: flex;
        min-height: auto;
        flex-direction: column;
        background: #d8ecfb;
    }

    .v2-image-panel img {
        order: 2;
        height: auto;
        aspect-ratio: 1140 / 736;
        object-fit: cover;
        object-position: center bottom;
    }

    .v2-image-panel div {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        width: auto;
        padding: 28px 24px 18px;
    }

    .v2-image-panel h3 {
        font-size: 30px;
    }

    .v2-image-panel p {
        font-size: 17px;
        line-height: 1.5;
    }

    .v2-wallet-section .v2-section-head {
        text-align: left;
    }

    .v2-wallet-list article {
        grid-template-columns: 1fr;
    }

    .v2-merchant-hero,
    .v2-merchant-hero > img {
        min-height: 640px;
        height: 640px;
    }

    .v2-merchant-copy {
        top: 72px;
        left: 16px;
        transform: none;
    }

    .v2-merchant-hero::after {
        background: linear-gradient(180deg, rgba(227, 246, 243, 0.95), rgba(227, 246, 243, 0.58), rgba(227, 246, 243, 0));
    }

    .v2-merchant-hero > img {
        object-position: 88% center;
    }

    .v2-footer-main {
        text-align: center;
    }

    .v2-footer nav,
    .v2-footer address,
    .v2-footer-download {
        justify-self: center;
    }

    .v2-footer-download {
        justify-items: center;
    }

    .v2-contact-link {
        justify-content: center;
    }

    .v2-footer-contact .v2-social-links {
        justify-content: center;
    }

    .v2-recognition-card {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 28px 22px;
        text-align: center;
    }

    .v2-recognition-card p {
        font-size: 16px;
    }

    .v2-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
