@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --secondary: #10b981;
    --primary-dark: #1747b8;
    --ink: #071733;
    --muted: #64748b;
    --soft: #f5f8ff;
    --line: #e7edf6;
    --white: #ffffff;
    --shadow-sm: 0 14px 45px rgba(15, 23, 42, .07);
    --shadow-lg: 0 32px 100px rgba(15, 23, 42, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: #f8fafc;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.icon {
    flex: 0 0 auto;
}

/* TOP NOTICE + NAVIGATION */
.top-notice {
    position: relative;
    z-index: 60;
    color: #dbeafe;
    background: #071733;
}

.top-notice .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .02em;
}

.top-notice span,
.top-notice a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-notice a {
    color: #6ee7b7;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, .78);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 35px rgba(15, 23, 42, .035);
    backdrop-filter: blur(20px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, #eff6ff, #ecfdf5);
}

.brand-mark img {
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy b {
    color: var(--primary);
    font-size: 19px;
    line-height: 1;
    letter-spacing: -.035em;
}

.brand-copy small {
    margin-top: 4px;
    color: #718096;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 28px 0;
    color: #4b5b70;
    font-size: 11px;
    font-weight: 700;
    transition: color .2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 19px;
    left: 50%;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: left .2s ease, right .2s ease;
}

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

.desktop-nav a:hover::after {
    right: 0;
    left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-login {
    padding: 10px 12px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
}

.btn {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 21px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    box-shadow: 0 13px 30px rgba(37, 99, 235, .22);
}

.btn.primary:hover {
    box-shadow: 0 17px 38px rgba(37, 99, 235, .3);
}

.btn.light {
    border: 1px solid #dce4ef;
    color: #334155;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 9px 25px rgba(15, 23, 42, .045);
}

.btn.dark {
    color: white;
    background: #071733;
}

.btn-large {
    min-height: 49px;
    padding-inline: 25px;
}

.menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: none;
    place-items: center;
    color: #334155;
    background: white;
}

.mobile-nav {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 99, 235, .13), transparent 28rem),
        radial-gradient(circle at 88% 10%, rgba(16, 185, 129, .14), transparent 30rem),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .55;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: .17;
    pointer-events: none;
}

.hero-glow-blue {
    top: 30px;
    left: -170px;
    background: var(--primary);
}

.hero-glow-green {
    top: 5px;
    right: -130px;
    background: var(--secondary);
}

.hero-grid {
    position: relative;
    min-height: 555px;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 68px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #d8e5fb;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    font-size: 9px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero h1 {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--ink);
    font-size: clamp(56px, 6.4vw, 86px);
    line-height: .96;
    letter-spacing: -.073em;
}

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

.hero-copy > p {
    max-width: 590px;
    margin: 25px 0 0;
    color: #5d6b7f;
    font-size: 15px;
    line-height: 1.8;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 31px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 26px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
}

.hero-trust .icon {
    color: var(--secondary);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-product-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 42px;
    padding: 26px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, .86), rgba(240, 247, 255, .72));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(26px);
}

.hero-product-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: 70px;
    left: 50%;
    border-radius: 50%;
    background: rgba(37, 99, 235, .09);
    filter: blur(30px);
    transform: translateX(-50%);
}

.product-card-top,
.product-card-bottom {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-card-top small,
.product-card-bottom small {
    display: block;
    color: #8a9bb1;
    font-size: 8px;
    font-weight: 700;
}

.product-card-top strong {
    display: block;
    margin-top: 5px;
    color: #14223a;
    font-size: 16px;
    line-height: 1.35;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: 8px;
    font-weight: 800;
}

.live-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .13);
}

.wallet-stage {
    position: relative;
    z-index: 2;
    height: 270px;
    display: grid;
    place-items: center;
}

.wallet-object {
    position: relative;
    width: 245px;
    height: 155px;
    border-radius: 33px;
    background: linear-gradient(145deg, #3779f5 0%, #245bd7 58%, #1747b8 100%);
    box-shadow:
        0 40px 65px rgba(37, 99, 235, .29),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    transform: rotate(-5deg);
    animation: walletFloat 4.2s ease-in-out infinite;
}

.wallet-highlight {
    position: absolute;
    top: 14px;
    right: 30px;
    left: 24px;
    height: 2px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .25);
}

.wallet-pocket {
    position: absolute;
    top: 49px;
    right: -13px;
    width: 131px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(145deg, #19c58d, #07996b);
    box-shadow: 0 17px 34px rgba(16, 185, 129, .28);
}

.wallet-pocket span {
    position: absolute;
    top: 23px;
    right: 21px;
    width: 18px;
    height: 18px;
    border: 5px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
}

.wallet-speed {
    position: absolute;
    left: 10px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.speed-one {
    top: 90px;
    width: 82px;
}

.speed-two {
    top: 130px;
    left: 25px;
    width: 60px;
}

.speed-three {
    top: 170px;
    left: 43px;
    width: 40px;
}

.floating-chip {
    position: absolute;
    z-index: 5;
    min-width: 122px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 17px;
    color: var(--primary);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
    backdrop-filter: blur(15px);
}

.floating-chip span {
    display: flex;
    flex-direction: column;
}

.floating-chip small {
    color: #94a3b8;
    font-size: 7px;
}

.floating-chip b {
    margin-top: 2px;
    color: #22314a;
    font-size: 9px;
}

.chip-pulsa {
    top: 135px;
    left: 23px;
}

.chip-pln {
    top: 207px;
    right: 20px;
}

.chip-game {
    bottom: 108px;
    left: 42px;
}

.product-card-bottom {
    align-items: center;
    margin-top: -2px;
    padding: 14px 15px;
    border: 1px solid #e9eef6;
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
}

.product-card-bottom b {
    display: block;
    margin-top: 4px;
    color: #22314a;
    font-size: 10px;
}

.product-card-bottom a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--secondary);
}

.hero-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transform: translateY(37px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 25px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .09);
    backdrop-filter: blur(20px);
}

.hero-stats div {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 27px;
}

.hero-stats div + div {
    border-left: 1px solid #edf1f6;
}

.hero-stats strong {
    color: var(--ink);
    font-size: 17px;
    letter-spacing: -.03em;
}

.hero-stats span {
    margin-top: 5px;
    color: #718096;
    font-size: 9px;
}

/* GENERIC SECTIONS */
.section {
    padding: 96px 0;
}

.services-section {
    padding-top: 133px;
    background: white;
}

.heading {
    max-width: 730px;
}

.heading.center {
    margin-inline: auto;
    text-align: center;
}

.heading > span,
.section-kicker,
.company-copy > span {
    display: block;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .22em;
}

.heading h2,
.app-showcase-copy h2,
.company-copy h2 {
    margin: 15px 0 0;
    color: var(--ink);
    font-size: clamp(35px, 4.7vw, 52px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.heading p,
.app-showcase-copy > p,
.company-copy > p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.text-link,
.update-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 46px;
}

.service-card {
    position: relative;
    min-height: 226px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(248, 251, 255, .96));
    box-shadow: 0 8px 28px rgba(15, 23, 42, .035);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
    transition-delay: var(--card-delay);
}

.service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(37, 99, 235, .1), rgba(16, 185, 129, .08));
    transition: transform .3s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(37, 99, 235, .27);
    box-shadow: 0 25px 55px rgba(37, 99, 235, .11);
    transform: translateY(-7px);
}

.service-card:hover::after {
    transform: scale(1.25);
}

.service-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-card-head > img {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    object-fit: cover;
}

.icon-box {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid #dbeafe;
    border-radius: 17px;
    color: var(--primary);
    background: linear-gradient(145deg, #eff6ff, #ecfdf5);
}

.service-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #e5eaf2;
    border-radius: 50%;
    color: #8a9bb1;
    background: white;
    transition: color .2s ease, background .2s ease;
}

.service-card:hover .service-arrow {
    color: white;
    background: var(--primary);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin: 23px 0 0;
    color: #14223a;
    font-size: 14px;
    letter-spacing: -.025em;
}

.service-card p {
    position: relative;
    z-index: 2;
    min-height: 44px;
    margin: 9px 0 0;
    color: #6d7b8f;
    font-size: 10px;
    line-height: 1.75;
}

.service-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

/* APP SHOWCASE */
.app-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 30%, rgba(37, 99, 235, .12), transparent 27rem),
        #071733;
}

.app-showcase-card {
    min-height: 665px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.app-phone-column {
    position: relative;
    display: grid;
    place-items: center;
}

.phone-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .25);
    filter: blur(90px);
}

.phone-mock {
    position: relative;
    z-index: 2;
    width: 324px;
    border: 8px solid #020817;
    border-radius: 49px;
    padding: 7px;
    background: #020817;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(255, 255, 255, .1);
}

.phone-notch {
    position: absolute;
    z-index: 5;
    top: 9px;
    left: 50%;
    width: 105px;
    height: 24px;
    border-radius: 999px;
    background: #020817;
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 590px;
    overflow: hidden;
    border-radius: 36px;
    background: #f5f8ff;
}

.phone-head {
    padding: 45px 17px 27px;
    color: white;
    background: linear-gradient(145deg, #1747b8, var(--primary) 57%, var(--secondary));
}

.phone-user {
    display: flex;
    align-items: center;
    gap: 9px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--primary);
    background: white;
    font-size: 12px;
    font-weight: 800;
}

.phone-user > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phone-user small {
    color: #dbeafe;
    font-size: 7px;
}

.phone-user b {
    margin-top: 3px;
    font-size: 10px;
}

.phone-balance {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 17px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.phone-balance small,
.phone-balance span {
    display: block;
    color: #dbeafe;
    font-size: 7px;
}

.phone-balance strong {
    display: block;
    margin: 4px 0;
    font-size: 22px;
}

.phone-body {
    padding: 18px 15px;
}

.phone-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-section-title b {
    font-size: 9px;
}

.phone-section-title small {
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
}

.phone-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px 7px;
    margin-top: 13px;
}

.phone-menu span {
    text-align: center;
}

.phone-menu i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-inline: auto;
    border-radius: 12px;
    color: var(--primary);
    background: #eaf2ff;
}

.phone-menu small {
    display: block;
    height: 19px;
    margin-top: 5px;
    overflow: hidden;
    color: #64748b;
    font-size: 6px;
    line-height: 1.45;
}

.phone-promo {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    min-height: 95px;
    padding: 15px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(120deg, #2563eb, #10b981);
}

.phone-promo::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -25px;
    bottom: -45px;
    border: 22px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.phone-promo small,
.phone-promo b,
.phone-promo span {
    position: relative;
    z-index: 2;
    display: block;
}

.phone-promo small {
    font-size: 7px;
}

.phone-promo b {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.4;
}

.phone-promo span {
    width: fit-content;
    margin-top: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--primary);
    background: white;
    font-size: 6px;
    font-weight: 800;
}

.phone-history {
    display: grid;
    gap: 7px;
    margin-top: 13px;
}

.phone-history > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px;
    border-radius: 13px;
    background: white;
}

.phone-history > div > i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--secondary);
    background: #ecfdf5;
}

.phone-history span {
    flex: 1;
}

.phone-history b,
.phone-history small {
    display: block;
}

.phone-history b {
    font-size: 7px;
}

.phone-history small {
    margin-top: 2px;
    color: var(--secondary);
    font-size: 6px;
}

.phone-history strong {
    font-size: 7px;
}

.app-showcase-copy {
    color: white;
}

.app-showcase-copy .section-kicker {
    color: #6ee7b7;
}

.app-showcase-copy h2 {
    color: white;
}

.app-showcase-copy > p {
    color: #a9b8ca;
}

.benefit-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.benefit-list > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    background: rgba(255, 255, 255, .05);
}

.benefit-list > div > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #6ee7b7;
    background: rgba(255, 255, 255, .08);
}

.benefit-list span {
    display: flex;
    flex-direction: column;
}

.benefit-list b {
    font-size: 11px;
}

.benefit-list small {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 9px;
}

.app-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    background: rgba(255, 255, 255, .06);
}

/* ADVANTAGES */
.advantages {
    background: white;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 48px;
}

.advantage-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 27px;
    background: #fbfdff;
}

.advantage-card.featured {
    color: white;
    border-color: transparent;
    background: linear-gradient(145deg, #1747b8, var(--primary));
    box-shadow: 0 28px 65px rgba(37, 99, 235, .19);
}

.advantage-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #dbe4ef;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.featured .advantage-number {
    color: rgba(255, 255, 255, .16);
}

.advantage-card > i {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    background: #eaf2ff;
}

.featured > i {
    color: #6ee7b7;
    background: rgba(255, 255, 255, .1);
}

.advantage-card h3 {
    margin: 56px 0 0;
    font-size: 16px;
    letter-spacing: -.03em;
}

.advantage-card p {
    color: #64748b;
    font-size: 11px;
    line-height: 1.8;
}

.featured p {
    color: #dbeafe;
}

/* COMPANY */
.company-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(16, 185, 129, .11), transparent 26rem),
        linear-gradient(180deg, #eef5ff, #f8fbff);
}

.company-box {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 38px;
    padding: 52px;
    background: rgba(255, 255, 255, .83);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.company-copy > p {
    max-width: 560px;
}

.company-copy .btn {
    margin-top: 27px;
}

.company-visual {
    position: relative;
    min-height: 310px;
}

.company-logo-card {
    position: absolute;
    top: 82px;
    left: 50%;
    width: 225px;
    min-height: 140px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e6edf7;
    border-radius: 28px;
    padding: 25px;
    background: white;
    box-shadow: 0 25px 55px rgba(15, 23, 42, .1);
    transform: translateX(-50%);
}

.company-logo-card span {
    display: flex;
    flex-direction: column;
}

.company-logo-card small {
    color: #94a3b8;
    font-size: 8px;
}

.company-logo-card b {
    margin-top: 4px;
    color: var(--primary);
    font-size: 18px;
}

.company-fact {
    position: absolute;
    min-width: 188px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #e6edf7;
    border-radius: 17px;
    padding: 13px;
    color: var(--primary);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.company-fact span {
    display: flex;
    flex-direction: column;
}

.company-fact small {
    color: #94a3b8;
    font-size: 7px;
}

.company-fact b {
    margin-top: 3px;
    color: #27364d;
    font-size: 8px;
}

.fact-one {
    top: 5px;
    left: 0;
}

.fact-two {
    top: 18px;
    right: 0;
}

.fact-three {
    right: 26px;
    bottom: 10px;
}

/* UPDATES */
.updates-section {
    background: white;
}

.update-links {
    display: flex;
    gap: 18px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    margin-top: 45px;
}

.update-card {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 21px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 27px;
    padding: 17px;
    background: #fbfdff;
    transition: transform .22s ease, box-shadow .22s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.update-card > img,
.update-placeholder {
    width: 155px;
    height: 155px;
    object-fit: cover;
    border-radius: 20px;
}

.update-placeholder {
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.update-placeholder.article {
    background: linear-gradient(145deg, #071733, #334155);
}

.update-card small {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.update-card h3 {
    margin: 9px 0 0;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: -.025em;
}

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

.update-card span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
}

/* CTA */
.final-cta-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 45%, rgba(37, 99, 235, .09), transparent 25rem),
        #f8fafc;
}

.final-cta {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 39px;
    color: white;
    background:
        linear-gradient(112deg, #1949bd 0%, #2563eb 49%, #12b986 100%);
    box-shadow: 0 38px 95px rgba(37, 99, 235, .25);
}

.final-cta-with-model {
    display: grid;
    grid-template-columns: 1.07fr .93fr;
    align-items: stretch;
}

.final-cta-glow {
    position: absolute;
    z-index: 0;
    width: 390px;
    height: 390px;
    top: -185px;
    left: 155px;
    border: 65px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-model-wrap {
    position: relative;
    z-index: 2;
    min-height: 520px;
    overflow: hidden;
}

.final-cta-model-wrap::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    right: -2px;
    bottom: 0;
    width: 140px;
    background: linear-gradient(
        90deg,
        rgba(37, 99, 235, 0),
        rgba(37, 99, 235, .75) 72%,
        rgba(37, 99, 235, 1)
    );
    pointer-events: none;
}

.final-cta-model {
    position: absolute;
    z-index: 2;
    width: 530px;
    max-width: none;
    height: auto;
    left: 8px;
    bottom: 0;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 45px rgba(3, 17, 45, .2));
    -webkit-mask-image:
        linear-gradient(to right, black 0%, black 86%, transparent 100%);
    mask-image:
        linear-gradient(to right, black 0%, black 86%, transparent 100%);
}

.final-cta-model-ring {
    position: absolute;
    z-index: 1;
    width: 330px;
    height: 330px;
    top: -70px;
    left: 145px;
    border: 56px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.final-cta-floating {
    position: absolute;
    z-index: 6;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 20px;
    color: white;
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .13);
    backdrop-filter: blur(12px);
}

.final-cta-floating-wallet {
    top: 100px;
    right: 15px;
}

.final-cta-floating-shield {
    right: 3px;
    bottom: 82px;
}

.final-cta-content {
    position: relative;
    z-index: 8;
    align-self: center;
    padding: 62px 62px 62px 25px;
}

.final-cta-content > span {
    color: #dbeafe;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .21em;
}

.final-cta h2 {
    max-width: 560px;
    margin: 17px 0 0;
    color: white;
    font-size: clamp(42px, 4.7vw, 61px);
    line-height: 1.02;
    letter-spacing: -.06em;
}

.final-cta p {
    max-width: 540px;
    margin: 18px 0 0;
    color: #e3f3ff;
    font-size: 11px;
    line-height: 1.8;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 31px;
}

.white-button {
    color: var(--primary);
    background: white;
    box-shadow: 0 14px 34px rgba(4, 26, 70, .15);
}

.transparent-button {
    border: 1px solid rgba(255, 255, 255, .26);
    color: white;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
}

/* INTERNAL PAGES */
.page-hero {
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .13), transparent 28rem),
        radial-gradient(circle at 90% 15%, rgba(16, 185, 129, .1), transparent 26rem),
        white;
}

.page-hero span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.page-hero h1 {
    max-width: 900px;
    margin: 18px 0 0;
    color: var(--ink);
    font-size: clamp(43px, 6vw, 69px);
    line-height: 1.04;
    letter-spacing: -.06em;
}

.page-hero p {
    max-width: 700px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.prose {
    max-width: 860px;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 38px;
    color: #475569;
    background: white;
    line-height: 1.85;
}

.prose h2 {
    margin-top: 30px;
    color: var(--ink);
}

.prose .cover {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 22px;
}

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

.content-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 22px;
    background: white;
}

.content-card img {
    width: 100%;
    height: 170px;
    border-radius: 18px;
    object-fit: cover;
}

.content-card small {
    display: block;
    margin-top: 14px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
}

.content-card h3 {
    font-size: 16px;
}

.content-card p {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.75;
}

.content-card a {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.merge-box {
    margin-top: 45px;
    border-radius: 32px;
    padding: 38px;
    color: white;
    background: #071733;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.assistant,
.contact-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: white;
}

.assistant-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    color: white;
    background: #071733;
}

.messages {
    height: 360px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: #f8fafc;
}

.msg {
    max-width: 82%;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 10px;
    line-height: 1.65;
}

.msg.bot {
    border: 1px solid var(--line);
    background: white;
}

.msg.user {
    align-self: flex-end;
    color: white;
    background: var(--primary);
}

.assistant form {
    display: flex;
    gap: 8px;
    padding: 14px;
}

.assistant input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
}

.assistant button {
    width: 46px;
    border: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--primary);
}

.contact-card {
    padding: 25px;
}

.contact-card form {
    display: grid;
    gap: 12px;
}

.contact-card input,
.contact-card textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
}

.alert {
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 12px;
    font-size: 10px;
}

.alert.success {
    color: #065f46;
    background: #d1fae5;
}

.alert.error {
    color: #991b1b;
    background: #fee2e2;
}

.status-box {
    max-width: 820px;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 26px;
    background: white;
}

.status-head {
    display: flex;
    justify-content: space-between;
}

.status-head button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eef2f7;
    padding: 18px 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-dot.operational {
    background: #10b981;
}

.status-dot.degraded {
    background: #f59e0b;
}

.status-dot.outage {
    background: #ef4444;
}

.status-row span {
    flex: 1;
}

.notfound {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.notfound b {
    color: var(--primary);
    font-size: 80px;
}

/* FOOTER */
.footer {
    color: #cbd5e1;
    background: #07111f;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 65px;
    padding: 67px 0 55px;
}

.footer-brand-column > p {
    max-width: 420px;
    margin-top: 18px;
    color: #8493a8;
    font-size: 10px;
    line-height: 1.8;
}

.footer .brand-copy b {
    color: white;
}

.footer .brand-copy small {
    color: #7c8ba1;
}

.footer-contact {
    display: grid;
    gap: 9px;
    margin-top: 20px;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8493a8;
    font-size: 9px;
}

.footer-contact .icon {
    color: #6ee7b7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links b {
    margin-bottom: 4px;
    color: white;
    font-size: 10px;
}

.footer-links a {
    color: #8493a8;
    font-size: 9px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #6ee7b7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: #64748b;
    font-size: 8px;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes walletFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-13px) rotate(-2deg);
    }
}

/* TABLET */
@media (max-width: 1020px) {
    .desktop-nav,
    .desktop-only,
    .nav-login {
        display: none;
    }

    .menu-btn {
        display: grid;
        margin-left: auto;
    }

    .mobile-nav.open {
        display: grid;
        gap: 3px;
        border-top: 1px solid var(--line);
        padding: 13px 18px 18px;
        background: white;
    }

    .mobile-nav a:not(.btn) {
        border-radius: 12px;
        padding: 12px;
        color: #475569;
        font-size: 11px;
        font-weight: 700;
    }

    .hero-grid,
    .app-showcase-card,
    .company-box,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-grid {
        gap: 35px;
        text-align: center;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-product-card {
        width: min(600px, 100%);
        margin-inline: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats div:nth-child(3) {
        border-top: 1px solid #edf1f6;
        border-left: 0;
    }

    .hero-stats div:nth-child(4) {
        border-top: 1px solid #edf1f6;
    }

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

    .app-showcase-card {
        padding: 80px 0;
    }

    .app-showcase-copy {
        max-width: 700px;
        margin-inline: auto;
        text-align: center;
    }

    .benefit-list {
        text-align: left;
    }

    .company-box {
        padding: 40px;
    }

    .company-copy {
        text-align: center;
    }

    .company-copy > p {
        margin-inline: auto;
    }

    .company-visual {
        width: min(600px, 100%);
        margin-inline: auto;
    }

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

    .final-cta-with-model {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-model {
        width: 500px;
        left: -35px;
        bottom: 0;
    }

    .final-cta-content {
        padding: 52px 35px 52px 0;
    }

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

/* MOBILE */
@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .top-notice .container {
        justify-content: center;
    }

    .top-notice a {
        display: none;
    }

    .nav {
        min-height: 68px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-copy > p {
        font-size: 13px;
    }

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 10px 17px;
    }

    .hero-product-card {
        min-height: 420px;
        border-radius: 29px;
        padding: 20px;
    }

    .wallet-stage {
        height: 260px;
        transform: scale(.84);
    }

    .floating-chip {
        min-width: 105px;
        padding: 9px 10px;
    }

    .chip-pulsa {
        top: 130px;
        left: 10px;
    }

    .chip-pln {
        right: 8px;
    }

    .chip-game {
        bottom: 104px;
        left: 16px;
    }

    .hero-stats {
        transform: translateY(28px);
    }

    .hero-stats div {
        min-height: 74px;
        padding: 14px 17px;
    }

    .services-section {
        padding-top: 104px;
    }

    .section {
        padding: 72px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .heading h2,
    .app-showcase-copy h2,
    .company-copy h2 {
        font-size: 36px;
    }

    .service-grid,
    .advantage-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 205px;
    }

    .phone-mock {
        width: min(312px, 100%);
    }

    .app-showcase-card {
        gap: 55px;
        padding: 65px 0;
    }

    .company-box {
        min-height: auto;
        gap: 30px;
        border-radius: 29px;
        padding: 27px;
    }

    .company-visual {
        min-height: 390px;
    }

    .company-logo-card {
        top: 120px;
    }

    .company-fact {
        min-width: 160px;
    }

    .fact-two {
        top: 10px;
    }

    .fact-three {
        right: 2px;
    }

    .update-links {
        flex-wrap: wrap;
    }

    .update-card {
        grid-template-columns: 1fr;
    }

    .update-card > img,
    .update-placeholder {
        width: 100%;
        height: 190px;
    }

    .final-cta {
        min-height: auto;
        border-radius: 29px;
    }

    .final-cta-with-model {
        grid-template-columns: 1fr;
    }

    .final-cta-model-wrap {
        min-height: 410px;
        order: 1;
    }

    .final-cta-model-wrap::after {
        top: auto;
        right: 0;
        bottom: -1px;
        left: 0;
        width: auto;
        height: 95px;
        background: linear-gradient(
            180deg,
            rgba(37, 99, 235, 0),
            rgba(37, 99, 235, .96)
        );
    }

    .final-cta-model {
        width: 420px;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        -webkit-mask-image:
            linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image:
            linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .final-cta-model-ring {
        left: 50%;
        transform: translateX(-50%);
    }

    .final-cta-floating-wallet {
        top: 58px;
        right: 22px;
    }

    .final-cta-floating-shield {
        right: auto;
        bottom: 30px;
        left: 22px;
    }

    .final-cta-content {
        order: 2;
        padding: 5px 24px 36px;
        text-align: center;
    }

    .final-cta h2 {
        font-size: 38px;
    }

    .final-cta p {
        margin-inline: auto;
    }

    .final-cta-actions {
        flex-direction: column;
        justify-content: center;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .footer-main {
        gap: 38px;
        padding: 53px 0 42px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

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

    .prose {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* DOWNLOAD APK MODAL */
body.modal-open {
    overflow: hidden;
}

.download-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .22s ease, visibility .22s ease;
}

.download-modal.open {
    visibility: visible;
    opacity: 1;
}

.download-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(2, 8, 23, .72);
    backdrop-filter: blur(9px);
    cursor: pointer;
}

.download-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(790px, calc(100% - 28px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 31px;
    padding: 28px;
    background:
        radial-gradient(circle at 95% 5%, rgba(16, 185, 129, .13), transparent 18rem),
        radial-gradient(circle at 5% 0%, rgba(37, 99, 235, .12), transparent 20rem),
        white;
    box-shadow: 0 45px 120px rgba(2, 8, 23, .32);
    transform: translate(-50%, -46%) scale(.96);
    transition: transform .25s ease;
}

.download-modal.open .download-dialog {
    transform: translate(-50%, -50%) scale(1);
}

.download-close {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: 17px;
    width: 39px;
    height: 39px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #475569;
    background: rgba(255, 255, 255, .88);
    cursor: pointer;
}

.download-close span {
    margin-top: -2px;
    font-size: 25px;
    line-height: 1;
}

.download-dialog-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 44px;
}

.download-app-icon {
    width: 70px;
    height: 70px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    background: linear-gradient(145deg, #eff6ff, #ecfdf5);
}

.download-dialog-header small {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.download-dialog-header h2 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 26px;
    letter-spacing: -.045em;
}

.download-dialog-header p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.65;
}

.download-dialog-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    margin-top: 25px;
}

.download-qr-card {
    border: 1px solid #e4ebf5;
    border-radius: 25px;
    padding: 18px;
    text-align: center;
    background: rgba(248, 251, 255, .9);
}

.download-qr-frame {
    border: 8px solid white;
    border-radius: 20px;
    padding: 7px;
    background: white;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.download-qr-frame img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: pixelated;
}

.download-qr-card > span {
    display: block;
    margin-top: 14px;
    color: #475569;
    font-size: 9px;
    font-weight: 800;
}

.download-app-info {
    display: flex;
    flex-direction: column;
}

.download-info-title {
    display: flex;
    align-items: center;
    gap: 9px;
}

.android-badge {
    padding: 6px 9px;
    border-radius: 999px;
    color: #047857;
    background: #d1fae5;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.download-info-title b {
    color: #1e293b;
    font-size: 12px;
}

.download-detail-list {
    display: grid;
    gap: 10px;
    margin-top: 17px;
}

.download-detail-list > div {
    border: 1px solid #e8edf5;
    border-radius: 15px;
    padding: 11px 13px;
    background: white;
}

.download-detail-list small,
.download-detail-list strong {
    display: block;
}

.download-detail-list small {
    color: #94a3b8;
    font-size: 7px;
}

.download-detail-list strong {
    margin-top: 4px;
    overflow-wrap: anywhere;
    color: #334155;
    font-size: 9px;
}

.download-apk-button {
    width: 100%;
    min-height: 48px;
    margin-top: 17px;
}

.download-security-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 12px 2px 0;
    color: #718096;
    font-size: 8px;
    line-height: 1.65;
}

.download-security-note .icon {
    margin-top: 1px;
    color: var(--secondary);
}

@media (max-width: 680px) {
    .download-dialog {
        padding: 22px;
        border-radius: 25px;
    }

    .download-dialog-header {
        align-items: flex-start;
    }

    .download-app-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .download-app-icon img {
        width: 48px;
        height: 48px;
    }

    .download-dialog-header h2 {
        font-size: 21px;
    }

    .download-dialog-content {
        grid-template-columns: 1fr;
    }

    .download-qr-card {
        width: min(270px, 100%);
        margin-inline: auto;
    }
}


/* AI ASSISTANT PENAPAY */
.assistant-head {
    min-height: 70px;
}

.assistant-head-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
}

.assistant-head-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.assistant-head-copy b {
    font-size: 13px;
}

.assistant-head-copy small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: #93c5fd;
    font-size: 8px;
    font-weight: 700;
}

.assistant-head-copy small i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .13);
}

.assistant-ai-badge {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #6ee7b7;
    background: rgba(255, 255, 255, .07);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}


.assistant-security {
    margin: 0;
    padding: 0 15px 14px;
    color: #94a3b8;
    background: white;
    font-size: 8px;
}

.msg.typing {
    color: #64748b;
    font-style: italic;
}

.assistant form button:disabled,
.assistant form input:disabled {
    cursor: wait;
    opacity: .65;
}

.assistant form button.loading .icon {
    animation: assistantPulse .8s ease-in-out infinite alternate;
}

@keyframes assistantPulse {
    from {
        transform: translateX(-2px);
    }

    to {
        transform: translateX(3px);
    }
}

/*
 * Aset v3 sudah dibersihkan dari piksel putih.
 * Warna dasar ini mencegah artefak jika gambar terlambat dimuat.
 */
.final-cta-model-wrap {
    background: transparent;
}

/* =========================================================
   COMPANY / ABOUT PAGES — v4.8
   ========================================================= */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .16), transparent 29rem),
        radial-gradient(circle at 92% 20%, rgba(16, 185, 129, .13), transparent 31rem),
        linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
}

.about-hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.about-hero-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(100px);
    opacity: .16;
    pointer-events: none;
}

.about-hero-orb-blue { top: 70px; left: -190px; background: var(--primary); }
.about-hero-orb-green { right: -160px; bottom: 0; background: var(--secondary); }

.about-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 66px;
}

.about-eyebrow,
.about-pillars-copy .section-kicker,
.about-ecosystem-card .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.about-eyebrow { color: var(--primary); }
.about-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-hero-copy h1 {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--ink);
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.01;
    letter-spacing: -.065em;
}

.about-hero-copy h1 em {
    display: inline;
    color: var(--primary);
    font-style: normal;
}

.about-hero-copy > p {
    max-width: 610px;
    margin: 22px 0 0;
    color: #5c6d82;
    font-size: 14px;
    line-height: 1.82;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 27px;
}

.about-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.about-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
}

.about-trust-row .icon { color: var(--secondary); }
.about-hero-visual { display: flex; justify-content: flex-end; }

.about-visual-card {
    position: relative;
    width: min(460px, 100%);
    min-height: 455px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .94);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .19), transparent 14rem),
        linear-gradient(145deg, #175ce2 0%, #1d4ed8 50%, #143fa8 100%);
    box-shadow: 0 32px 75px rgba(23, 71, 184, .22);
}

.about-visual-card::before,
.about-visual-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .11);
}
.about-visual-card::before {
    width: 255px;
    height: 255px;
    right: -90px;
    bottom: -75px;
    box-shadow: 0 0 0 38px rgba(255,255,255,.035), 0 0 0 80px rgba(255,255,255,.022);
}
.about-visual-card::after {
    width: 150px;
    height: 150px;
    left: -80px;
    top: 75px;
}

.about-visual-topline {
    position: absolute;
    z-index: 5;
    top: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.about-visual-topline small {
    max-width: 170px;
    color: rgba(255,255,255,.72);
    font-size: 6.8px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .08em;
    text-align: right;
}
.about-visual-card .live-badge {
    color: #d1fae5;
    background: rgba(7, 23, 51, .38);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.about-model-wrap {
    position: absolute;
    z-index: 2;
    inset: 68px 0 0;
    overflow: hidden;
}
.about-model-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 43%;
}

.about-floating-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 172px;
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 17px;
    padding: 11px 13px;
    color: var(--primary);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 40px rgba(7, 23, 51, .16);
    backdrop-filter: blur(12px);
}
.about-floating-card > i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #edf4ff;
}
.about-floating-card span { display: flex; flex-direction: column; }
.about-floating-card small { color: #94a3b8; font-size: 7px; }
.about-floating-card b { margin-top: 2px; color: #203047; font-size: 9px; }
.about-floating-card-one { bottom: 28px; left: 18px; }
.about-floating-card-two { top: 104px; right: 17px; }

.about-visual-badge {
    position: absolute;
    z-index: 6;
    right: 18px;
    bottom: 26px;
    width: 130px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 12px;
    color: white;
    background: rgba(7,23,51,.36);
    backdrop-filter: blur(12px);
}
.about-visual-badge > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 9px;
    color: #6ee7b7;
    background: rgba(110,231,183,.12);
}
.about-visual-badge b { display: block; font-size: 9px; }
.about-visual-badge small { display: block; margin-top: 2px; color: rgba(255,255,255,.62); font-size: 6.6px; line-height: 1.45; }

.about-service-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    align-items: stretch;
    gap: 1px;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(226,232,240,.9);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    background: rgba(226,232,240,.75);
    box-shadow: 0 -8px 30px rgba(15,23,42,.035);
}
.about-service-strip-label {
    display: grid;
    place-items: center;
    padding: 19px 23px;
    color: #7b8ba0;
    background: rgba(248,251,255,.95);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
    white-space: nowrap;
}
.about-service-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 18px;
    color: var(--primary);
    background: rgba(255,255,255,.92);
}
.about-service-chip > span { display: flex; flex-direction: column; min-width: 0; }
.about-service-chip small { color: #94a3b8; font-size: 6.6px; }
.about-service-chip b { margin-top: 2px; color: #283950; font-size: 8.5px; }

.about-intro-section { padding: 82px 0 88px; background: white; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 76px;
    align-items: center;
}
.about-intro-copy h2,
.about-pillars-copy h2,
.about-ecosystem-copy h2,
.about-cta h2 {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.08;
    letter-spacing: -.055em;
}
.about-rich-copy {
    max-width: 665px;
    margin-top: 22px;
    color: #5f6e82;
    font-size: 12.5px;
    line-height: 1.9;
}
.about-rich-copy p { margin: 0 0 14px; }

.about-mini-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 610px;
    margin-top: 25px;
}
.about-mini-points > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 11px;
    align-items: center;
    border-top: 1px solid #e7edf6;
    padding-top: 16px;
}
.about-mini-points > div > span {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--primary);
    background: #edf4ff;
}
.about-mini-points b { color: #26364d; font-size: 10px; }
.about-mini-points small { margin-top: 2px; color: #8a99ac; font-size: 7.5px; line-height: 1.45; }

.company-profile-body h2 { margin: 24px 0 8px; color: var(--ink); font-size: 20px; letter-spacing: -.035em; }
.company-profile-body ul { margin: 8px 0 0; padding-left: 20px; }
.company-profile-body li + li { margin-top: 7px; }

.about-company-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2eaf5;
    border-radius: 29px;
    padding: 28px;
    background: linear-gradient(160deg, #fbfdff 0%, #f3f8ff 100%);
    box-shadow: 0 22px 60px rgba(15,23,42,.075);
}
.about-company-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #4f8cff, var(--secondary));
}
.about-company-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 21px;
    border-bottom: 1px solid #e7edf6;
}
.about-company-logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid #e4ebf5;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.about-company-head > div { display: flex; flex-direction: column; }
.about-company-head small { color: #94a3b8; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.about-company-head strong { margin-top: 5px; color: var(--ink); font-size: 14px; line-height: 1.45; }
.about-company-list { display: grid; gap: 9px; margin-top: 19px; }
.about-company-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e8eef7;
    border-radius: 15px;
    padding: 11px 12px;
    background: rgba(255,255,255,.86);
}
.about-company-list i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #eaf2ff;
}
.about-company-list span { display: flex; min-width: 0; flex-direction: column; }
.about-company-list small { color: #94a3b8; font-size: 7px; }
.about-company-list b { margin-top: 2px; overflow-wrap: anywhere; color: #334155; font-size: 9px; }
.about-company-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 19px;
    padding-top: 2px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.about-pillars-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    background:
        radial-gradient(circle at 90% 12%, rgba(37,99,235,.25), transparent 30rem),
        radial-gradient(circle at 5% 90%, rgba(16,185,129,.09), transparent 24rem),
        #071733;
}
.about-pillars-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: radial-gradient(rgba(255,255,255,.42) .7px, transparent .7px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}
.about-pillars-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 65px;
    align-items: start;
}
.about-pillars-copy { padding-top: 8px; }
.about-pillars-copy .section-kicker { color: #6ee7b7; }
.about-pillars-copy h2 { color: white; font-size: clamp(34px, 3.7vw, 47px); }
.about-pillars-copy > p {
    max-width: 470px;
    margin: 19px 0 0;
    color: #aebfd4;
    font-size: 11px;
    line-height: 1.88;
}
.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: #7dd3fc;
    font-size: 9px;
    font-weight: 800;
}
.about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.about-pillar-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: 23px;
    background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    box-shadow: inset 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
}
.about-pillar-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -58px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 999px;
}
.about-pillar-card > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #6ee7b7;
    background: rgba(110,231,183,.1);
}
.about-pillar-number {
    position: absolute;
    top: 21px;
    right: 22px;
    color: rgba(255,255,255,.25);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
}
.about-pillar-card h3 { margin: 32px 0 0; color: white; font-size: 15px; letter-spacing: -.03em; }
.about-pillar-card p { margin: 9px 0 0; color: #aebfd4; font-size: 9px; line-height: 1.78; }

.about-ecosystem-section { padding: 82px 0 74px; background: #f4f8fd; }
.about-ecosystem-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 32px;
    padding: 45px 46px;
    background:
        radial-gradient(circle at 88% 0%, rgba(16,185,129,.1), transparent 24rem),
        radial-gradient(circle at 0% 100%, rgba(37,99,235,.09), transparent 25rem),
        white;
    box-shadow: 0 25px 70px rgba(15,23,42,.09);
}
.about-ecosystem-header {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: end;
}
.about-ecosystem-copy .section-kicker { color: var(--secondary); }
.about-ecosystem-copy h2 { font-size: clamp(32px, 3.55vw, 45px); }
.about-ecosystem-header > p {
    margin: 0 0 4px;
    color: #64748b;
    font-size: 10.5px;
    line-height: 1.85;
}
.about-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 9px;
    margin-top: 38px;
}
.about-flow-item {
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid var(--line);
    border-radius: 19px;
    padding: 24px 15px 16px;
    color: var(--primary);
    background: #f8fbff;
}
.about-step {
    position: absolute;
    top: 9px;
    right: 12px;
    color: #b6c1d0;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: .1em;
}
.about-flow-item > i,
.about-flow-logo {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: #eaf2ff;
}
.about-flow-item > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.about-flow-item small { color: #94a3b8; font-size: 6.7px; font-weight: 700; }
.about-flow-item b { margin-top: 3px; color: #24364f; font-size: 9px; }
.about-flow-main {
    border-color: rgba(37,99,235,.22);
    background: linear-gradient(160deg, #f1f6ff, #eaf2ff);
    box-shadow: 0 13px 30px rgba(37,99,235,.1);
}
.about-flow-logo { background: white; box-shadow: 0 7px 18px rgba(15,23,42,.06); }
.about-flow-arrow { display: grid; place-items: center; color: #a5b4c6; }

.about-cta-section { padding: 0 0 82px; background: #f4f8fd; }
.about-cta {
    position: relative;
    min-height: 250px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 42px;
    overflow: hidden;
    border-radius: 31px;
    padding: 43px 48px;
    background:
        radial-gradient(circle at 82% 0%, rgba(16,185,129,.22), transparent 22rem),
        linear-gradient(135deg, #0b2e78 0%, #164fc4 58%, #103f9f 100%);
    box-shadow: 0 28px 65px rgba(23,71,184,.21);
}
.about-cta-decoration {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    pointer-events: none;
}
.about-cta-decoration-one { width: 250px; height: 250px; right: -90px; bottom: -145px; box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 85px rgba(255,255,255,.018); }
.about-cta-decoration-two { width: 110px; height: 110px; right: 260px; top: -75px; }
.about-cta-copy, .about-cta-actions { position: relative; z-index: 2; }
.about-cta-copy > span { color: #6ee7b7; font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.about-cta h2 { color: white; font-size: clamp(33px, 3.8vw, 47px); }
.about-cta p { max-width: 610px; margin: 14px 0 0; color: #c7d6eb; font-size: 10px; line-height: 1.75; }
.about-cta-actions { display: flex; flex-direction: column; gap: 9px; min-width: 205px; }

@media (max-width: 1020px) {
    .about-hero-grid,
    .about-intro-grid,
    .about-pillars-layout,
    .about-ecosystem-header { grid-template-columns: 1fr; }
    .about-hero-grid { gap: 42px; }
    .about-hero-copy { max-width: 790px; margin-inline: auto; text-align: center; }
    .about-hero-copy > p { margin-inline: auto; }
    .about-actions, .about-trust-row { justify-content: center; }
    .about-hero-visual { justify-content: center; }
    .about-service-strip { grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid rgba(226,232,240,.9); border-radius: 22px; margin-bottom: 40px; }
    .about-service-strip-label { grid-column: 1 / -1; min-height: 40px; }
    .about-intro-grid, .about-pillars-layout, .about-ecosystem-header { gap: 36px; }
    .about-pillars-copy { max-width: 700px; }
    .about-ecosystem-header > p { max-width: 660px; }
    .about-flow { grid-template-columns: 1fr 1fr; }
    .about-flow-arrow { display: none; }
    .about-cta { grid-template-columns: 1fr; }
    .about-cta-actions { flex-direction: row; min-width: 0; }
}

@media (max-width: 680px) {
    .about-hero { padding-top: 42px; }
    .about-hero-grid { min-height: auto; gap: 31px; }
    .about-hero-copy h1 { font-size: 42px; line-height: 1.02; }
    .about-hero-copy > p { font-size: 12px; line-height: 1.75; }
    .about-actions { flex-direction: column; }
    .about-actions .btn { width: 100%; }
    .about-trust-row { gap: 8px 13px; }
    .about-visual-card { min-height: 390px; border-radius: 27px; }
    .about-visual-topline { top: 17px; left: 17px; right: 17px; }
    .about-visual-topline small { max-width: 125px; font-size: 5.9px; }
    .about-model-wrap { inset: 61px 0 0; }
    .about-floating-card { min-width: 150px; padding: 9px 10px; }
    .about-floating-card-one { bottom: 16px; left: 10px; }
    .about-floating-card-two { top: 88px; right: 9px; }
    .about-visual-badge { display: none; }
    .about-service-strip { grid-template-columns: 1fr 1fr; margin-top: 31px; margin-bottom: 0; border-radius: 20px 20px 0 0; }
    .about-service-chip { padding: 14px 12px; }
    .about-intro-section, .about-pillars-section, .about-ecosystem-section { padding: 64px 0; }
    .about-intro-copy h2, .about-pillars-copy h2, .about-ecosystem-copy h2 { font-size: 34px; }
    .about-mini-points { grid-template-columns: 1fr; }
    .about-company-card { border-radius: 24px; padding: 21px; }
    .about-pillar-grid { grid-template-columns: 1fr; }
    .about-pillar-card { min-height: 205px; }
    .about-ecosystem-card { border-radius: 25px; padding: 25px 22px; }
    .about-flow { grid-template-columns: 1fr; margin-top: 28px; }
    .about-flow-item { min-height: 85px; }
    .about-cta-section { padding-bottom: 64px; }
    .about-cta { min-height: 0; border-radius: 25px; padding: 31px 24px; }
    .about-cta-actions { flex-direction: column; }
    .about-cta-actions .btn { width: 100%; }
}
