/* =========================================================
   MAMOPOS WEBSITE
   Modern Responsive POS Website
   Main Color : #00A86B
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Inter, Arial, Helvetica, sans-serif;

    color: #102019;

    background: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1180px, calc(100% - 32px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    background: #008653;

    color: #ffffff;

    font-size: 12px;
}

.topbar-inner {
    min-height: 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.top-features {
    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
    height: 78px;

    background: #ffffff;

    border-bottom: 1px solid #e4ebe7;

    position: sticky;

    top: 0;

    z-index: 50;
}

.navbar {
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   MAMO BRAND
   ========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 9px;

    font-weight: 900;

    flex-shrink: 0;
}

.brand-logo {
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 3px;
}

.brand-logo b {
    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    margin: 0;

    border-radius: 5px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 21px;

    font-weight: 800;

    line-height: 1;

    text-align: center;

    letter-spacing: 0;
}

.brand-logo b:nth-child(1) {
    background: #ef3035;
}

.brand-logo b:nth-child(2) {
    background: #2878bd;
}

.brand-logo b:nth-child(3) {
    background: #ffc928;
}

.brand-logo b:nth-child(4) {
    background: #4bbf73;
}

.brand-caption {
    font-size: 7px;

    letter-spacing: 1.7px;

    color: #7b8982;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 4px;
}

.nav-links a {
    padding: 10px 12px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover {
    background: #e7f8f1;

    color: #008653;
}

.nav-links a.active {
    background: #e7f8f1;

    color: #008653;
}

.nav-login {
    border: 1px solid #00a86b;
}

.nav-cta {
    background: #00a86b !important;

    color: #ffffff !important;
}

.nav-cta:hover {
    background: #008653 !important;

    transform: translateY(-1px);
}

.mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    color: #102019;

    font-size: 25px;

    padding: 5px;
}


/* =========================================================
   FLOATING SOCIAL
   ========================================================= */

.social-float {
    position: fixed;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    z-index: 100;

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.social-float a {
    width: 48px;

    height: 48px;

    border-radius: 14px 0 0 14px;

    display: grid;

    place-items: center;

    color: #ffffff;

    font-size: 23px;

    font-weight: 900;

    box-shadow:
        0 8px 22px #0002;

    transition:
        width 0.2s ease,
        transform 0.2s ease;
}

.social-float a:hover {
    width: 58px;
}

.instagram {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}

.shopee {
    background: #ee4d2d;
}

.google-play {
    /*background: #414141;*/
    background: #4285f4;
}

.whatsapp {
    background: #075E54;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
    display: inline-block;

    background: #e7f8f1;

    color: #008653;

    border-radius: 30px;

    padding: 6px 13px;

    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 850;

    letter-spacing: 0.5px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 65px 0 80px;

    background:
        radial-gradient(
            circle at 82% 15%,
            #dff8ed,
            transparent 31%
        ),
        #ffffff;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 40px;

    align-items: center;
}

.hero h1 {
    margin: 0 0 20px;

    font-size: clamp(
        43px,
        5.5vw,
        68px
    );

    line-height: 1.04;

    letter-spacing: -3px;
}

.hero h1 span {
    color: #00a86b;
}

.hero p {
    max-width: 610px;

    margin: 0 0 25px;

    color: #66766e;

    font-size: 17px;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   BUTTON
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 13px 21px;

    border: 0;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #00a86b;

    color: #ffffff;

    box-shadow:
        0 9px 24px #00a86b33;
}

.btn-primary:hover {
    background: #008653;
}

.btn-outline {
    background: #ffffff;

    color: #008653;

    border: 1px solid #00a86b;
}

.btn-outline:hover {
    background: #e7f8f1;
}

.btn-soft {
    background: #e7f8f1;

    color: #008653;
}

.btn-soft:hover {
    background: #d3f2e5;
}

.full {
    width: 100%;
}


/* =========================================================
   HERO MEDIA
   ========================================================= */

.hero-media {
    position: relative;

    min-width: 0;
}

.hero-media img {
    display: block;

    width: 100%;

    max-height: 620px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px
            #005b3a22
        );
}


/* =========================================================
   PRICE BADGE
   ========================================================= */

.price-badge {
    position: absolute;

    right: 0;

    bottom: 20px;

    background: #ef3035;

    color: #ffffff;

    padding: 10px 15px;

    border-radius: 17px;

    text-align: center;

    box-shadow:
        0 15px 35px #ef303533;
}

.price-badge strong {
    display: block;

    font-size: 25px;

    line-height: 1;
}


/* =========================================================
   TRUST ROW
   ========================================================= */

.trust-row {
    display: flex;

    margin-top: 40px;

    border: 1px solid #e4ebe7;

    border-radius: 18px;

    overflow: hidden;

    background: #ffffff;
}

.trust-row div {
    flex: 1;

    padding: 14px 18px;

    border-right: 1px solid #e4ebe7;
}

.trust-row div:last-child {
    border-right: 0;
}

.trust-row strong {
    display: block;

    font-size: 20px;
}

.trust-row span {
    color: #66766e;

    font-size: 11px;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 88px 0;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 35px;
}

.section-heading h2 {
    margin: 0;

    font-size: 39px;

    line-height: 1.1;

    letter-spacing: -1.7px;
}

.section-heading p {
    max-width: 470px;

    margin: 0;

    color: #66766e;
}


/* =========================================================
   SYSTEM GRID
   ========================================================= */

.system-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARDS
   ========================================================= */

.system-card,
.product-card,
.price-card,
.contact-form,
.contact-card,
.usecase-card {
    border: 1px solid #e4ebe7;

    border-radius: 22px;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 7px 25px #1020190a;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.system-card:hover,
.product-card:hover,
.usecase-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 65px #0b261b1c;
}


/* =========================================================
   SYSTEM IMAGE
   ========================================================= */

.system-image {
    height: 245px;

    position: relative;

    background: #f2f7f5;

    overflow: hidden;
}

.system-image img,
.product-visual img,
.usecase-card img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.system-badge {
    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 2;

    background: #ffffff;

    color: #008653;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 900;

    box-shadow:
        0 5px 15px #00000018;
}


/* =========================================================
   SYSTEM BODY
   ========================================================= */

.system-body {
    padding: 24px;
}

.system-body h3 {
    margin-top: 0;

    font-size: 21px;

    line-height: 1.25;
}

.system-body p,
.product-content p {
    color: #66766e;

    font-size: 13px;
}

.system-body ul,
.product-content ul,
.price-card ul {
    padding-left: 18px;
}

.system-body li,
.product-content li,
.price-card li {
    margin: 5px 0;

    color: #53645c;

    font-size: 12px;
}

.system-price {
    margin: 16px 0;

    color: #008653;

    font-size: 20px;

    font-weight: 900;
}

.system-price small {
    color: #66766e;

    font-size: 11px;
}


/* =========================================================
   USE CASE
   ========================================================= */

.usecase {
    background: #f3fbf7;
}

.usecase-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.usecase-card img {
    height: 205px;
}

.usecase-card div {
    padding: 17px;
}

.usecase-card h3 {
    margin: 0;

    font-size: 17px;
}

.usecase-card p {
    color: #66766e;

    font-size: 12px;
}


/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section {
    background: #09271c;

    color: #ffffff;
}


/*
   IMPORTANT

   Desktop:
   Video  |  Content

   Tablet:
   Video  |  Content

   Mobile:
   Video
   Content
*/

.video-wrap {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    gap: 45px;

    align-items: center;
}


/* =========================================================
   VIDEO FRAME
   ========================================================= */

.video-frame {
    position: relative;

    width: 100%;

    /*
       Responsive 16:9
    */

    aspect-ratio: 16 / 9;

    border-radius: 27px;

    overflow: hidden;

    background: #000000;

    box-shadow:
        0 25px 60px #00000040;

    min-width: 0;
}


/* =========================================================
   VIDEO
   ========================================================= */

.demo-video {
    display: block;

    width: 100%;

    height: 100%;

    background: #000000;

    /*
       Seluruh video tetap terlihat
    */

    object-fit: contain;

    border-radius: 27px;
}


/* =========================================================
   VIDEO LABEL
   ========================================================= */

.video-label {
    position: absolute;

    top: 18px;

    left: 20px;

    z-index: 5;

    padding: 6px 10px;

    border-radius: 8px;

    background: #09271ccc;

    color: #a2e8ca;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 0.7px;

    pointer-events: none;
}


/* =========================================================
   VIDEO CONTENT
   ========================================================= */

.video-copy {
    min-width: 0;
}

.video-copy h2 {
    margin-top: 0;

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -2px;
}

.video-copy p {
    color: #c2d4cb;
}

.video-list {
    padding: 0;

    list-style: none;
}

.video-list li {
    margin: 9px 0;

    font-size: 13px;
}

.video-list li::before {
    content: "✓";

    margin-right: 9px;

    color: #63d8ae;

    font-weight: 900;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.page-title {
    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            #effaf5,
            #ffffff
        );

    border-bottom: 1px solid #e4ebe7;
}

.page-title h1 {
    margin: 0 0 13px;

    font-size: clamp(
        40px,
        5vw,
        58px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.page-title p {
    max-width: 700px;

    margin: 0;

    color: #66766e;
}


/* =========================================================
   PRODUCT
   ========================================================= */

.product-layout {
    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr);

    gap: 42px;
}

.product-sidebar {
    border-right: 1px solid #e4ebe7;

    padding-right: 24px;
}

.filter {
    display: block;

    width: 100%;

    border: 0;

    background: transparent;

    text-align: left;

    padding: 10px 12px;

    border-radius: 10px;

    color: #66766e;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.filter:hover,
.filter.active {
    background: #e7f8f1;

    color: #008653;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.product-card.hidden {
    display: none;
}

.product-visual {
    height: 220px;

    background: #f2f7f5;
}

.product-content {
    padding: 23px;
}

.product-content small,
.plan-label {
    color: #008653;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 1.4px;
}

.product-content h2 {
    font-size: 21px;

    line-height: 1.25;
}

.text-link {
    color: #008653;

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.price-card {
    position: relative;

    padding: 31px;
}

.price-card.featured {
    border: 2px solid #00a86b;

    box-shadow:
        0 18px 50px #00a86b1f;
}

.popular {
    position: absolute;

    top: 18px;

    right: 18px;

    padding: 5px 9px;

    border-radius: 20px;

    background: #00a86b;

    color: #ffffff;

    font-size: 9px;

    font-weight: 850;
}

.price-card h2 {
    font-size: 25px;
}

.price strong {
    font-size: 33px;
}

.pricing-note {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    margin-top: 22px;

    border-radius: 15px;

    background: #f5f9f7;

    font-size: 13px;
}

.pricing-note span {
    flex: 1;

    color: #66766e;
}

.pricing-note a {
    color: #008653;

    font-weight: 800;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 60px;
}

.contact-info > img {
    display: block;

    width: 100%;

    border-radius: 22px;
}

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 18px;

    margin-top: 14px;
}

.icon-box {
    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #e7f8f1;

    color: #008653;
}

.contact-card small {
    display: block;

    color: #008653;

    font-size: 9px;

    font-weight: 850;
}

.contact-card strong {
    font-size: 15px;
}

.contact-card p {
    margin: 2px 0;

    color: #66766e;

    font-size: 12px;
}

.contact-form {
    padding: 30px;
}

label {
    display: block;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;

    margin-top: 7px;

    padding: 12px;

    border: 1px solid #dfe7e3;

    border-radius: 10px;

    outline: none;

    background: #fbfcfc;

    color: #102019;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #00a86b;

    box-shadow:
        0 0 0 3px #00a86b14;
}

textarea {
    resize: vertical;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}

.form-message {
    margin-top: 10px;

    color: #008653;

    font-size: 12px;
}


/* =========================================================
   LOGIN
   ========================================================= */

.login-page {
    background: #f7faf8;
}

.login-shell {
    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 35px 20px;
}

.login-card {
    width: min(430px, 100%);

    padding: 34px;

    border: 1px solid #e4ebe7;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 22px 65px #0b261b1c;
}

.password-wrap {
    position: relative;
}

.password-wrap button {
    position: absolute;

    right: 10px;

    bottom: 7px;

    border: 0;

    background: transparent;

    color: #008653;

    font-size: 11px;

    font-weight: 700;
}

.login-options {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 11px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 45px 0 24px;

    border-top: 1px solid #e4ebe7;

    background: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 30px;
}

.footer-brand p,
.footer-col a {
    color: #66766e;

    font-size: 12px;
}

.footer-col a {
    display: block;

    margin-top: 8px;

    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #00a86b;
}

.copyright {
    display: flex;

    justify-content: space-between;

    margin-top: 30px;

    padding-top: 16px;

    border-top: 1px solid #e4ebe7;

    color: #8b9792;

    font-size: 11px;
}


/* =========================================================
   TABLET
   max-width: 980px
   ========================================================= */

@media (max-width: 980px) {

    /* -----------------------------------------------------
       NAVBAR
       ----------------------------------------------------- */

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1;
    }


    /* -----------------------------------------------------
       SYSTEM
       ----------------------------------------------------- */

    .system-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* -----------------------------------------------------
       USE CASE
       ----------------------------------------------------- */

    .usecase-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* -----------------------------------------------------
       PRODUCT
       ----------------------------------------------------- */

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        border-right: 0;

        border-bottom: 1px solid #e4ebe7;

        padding:
            0
            0
            12px;

        display: flex;

        gap: 5px;

        overflow-x: auto;
    }

    .filter {
        width: auto;

        white-space: nowrap;
    }


    /* -----------------------------------------------------
       PRICING
       ----------------------------------------------------- */

    .pricing-grid {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       CONTACT
       ----------------------------------------------------- */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* =====================================================
       VIDEO
       =====================================================

       IMPORTANT:

       Tetap 2 kolom pada tablet.

       Video             Content
       ┌────────────┐    ┌───────────┐
       │            │    │           │
       │   16 : 9   │    │   Text    │
       │            │    │           │
       └────────────┘    └───────────┘

    */

    .video-wrap {
        display: grid;

        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(280px, 0.9fr);

        gap: 30px;

        align-items: center;
    }

    .video-frame {
        width: 100%;

        aspect-ratio: 16 / 9;

        min-height: 0;

        border-radius: 22px;
    }

    .demo-video {
        width: 100%;

        height: 100%;

        border-radius: 22px;
    }

    .video-copy h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }

}


/* =========================================================
   MOBILE
   max-width: 600px
   ========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       CONTAINER
       ----------------------------------------------------- */

    .container {
        width: calc(100% - 28px);
    }


    /* -----------------------------------------------------
       TOP BAR
       ----------------------------------------------------- */

    .top-features {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }


    /* -----------------------------------------------------
       NAVBAR
       ----------------------------------------------------- */

    .site-header {
        height: 70px;
    }

    .navbar {
        height: 70px;
    }

    .brand-caption {
        display: none;
    }

    .brand-logo {
        height: 31px;
    }

    .brand-logo b {
        width: 29px;

        height: 29px;

        font-size: 19px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        padding:
            48px
            0
            60px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* -----------------------------------------------------
       TRUST
       ----------------------------------------------------- */

    .trust-row {
        display: block;
    }

    .trust-row div {
        border-right: 0;

        border-bottom: 1px solid #e4ebe7;
    }

    .trust-row div:last-child {
        border-bottom: 0;
    }


    /* -----------------------------------------------------
       SECTION
       ----------------------------------------------------- */

    .section {
        padding: 65px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        margin-bottom: 15px;

        font-size: 32px;

        letter-spacing: -1px;
    }


    /* -----------------------------------------------------
       SYSTEM
       ----------------------------------------------------- */

    .system-grid {
        grid-template-columns: 1fr;
    }

    .system-image {
        height: 230px;
    }


    /* -----------------------------------------------------
       USE CASE
       ----------------------------------------------------- */

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-card img {
        height: 220px;
    }


    /* -----------------------------------------------------
       PRODUCT
       ----------------------------------------------------- */

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-visual {
        height: 230px;
    }


    /* -----------------------------------------------------
       FORM
       ----------------------------------------------------- */

    .form-row {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .copyright {
        display: block;
    }

    .copyright span {
        display: block;

        margin-top: 5px;
    }


    /* -----------------------------------------------------
       SOCIAL FLOAT
       ----------------------------------------------------- */

    .social-float {
        gap: 5px;
    }

    .social-float a {
        width: 42px;

        height: 42px;

        border-radius: 12px 0 0 12px;

        font-size: 20px;
    }

    .social-float a:hover {
        width: 47px;
    }


    /* =====================================================
       VIDEO MOBILE
       =====================================================

       Pada HP baru berubah menjadi 1 kolom.
    */

    .video-wrap {
        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .video-frame {
        width: 100%;

        aspect-ratio: 16 / 9;

        min-height: 0;

        border-radius: 18px;
    }

    .demo-video {
        width: 100%;

        height: 100%;

        border-radius: 18px;

        object-fit: contain;
    }

    .video-label {
        top: 10px;

        left: 10px;

        padding: 5px 7px;

        border-radius: 6px;

        font-size: 8px;
    }

    .video-copy h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }

    .video-copy p {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       PAGE TITLE
       ----------------------------------------------------- */

    .page-title {
        padding: 55px 0;
    }

    .page-title h1 {
        font-size: 40px;
    }


    /* -----------------------------------------------------
       PRICING
       ----------------------------------------------------- */

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-note {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   max-width: 380px
   ========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 37px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .video-copy h2 {
        font-size: 30px;
    }

    .social-float a {
        width: 38px;

        height: 38px;

        font-size: 18px;
    }

}