*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-tap-highlight-color:transparent;
}

body{
    background:#eef2f7;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color:#222;
}

.mobile{
    max-width:430px;
    margin:0 auto;
    min-height:100vh;
    background:#fff;
    display:flex;
    flex-direction:column;
}

/* ---------- HEADER ---------- */

.header{
    background:#E31E24;
    color:#fff;
    padding:45px 25px 30px;
    text-align:center;
    border-radius:0 0 30px 30px;
    box-shadow:0 8px 25px rgba(227,30,36,.25);
}

.logo{
    width:90px;
    height:90px;
    object-fit:contain;
    background:#fff;
    border-radius:22px;
    padding:12px;
    margin:0 auto 20px;
}

.header h1{
    font-size:28px;
    font-weight:700;
}

.header p{
    margin-top:8px;
    opacity:.9;
    font-size:15px;
}

/* ---------- HERO ---------- */

.hero{
    margin:25px 20px;
    background:#f8f8f8;
    border-radius:18px;
    padding:20px;
}

.hero h2{
    font-size:24px;
    margin-bottom:8px;
}

.hero span{
    color:#666;
    line-height:1.5;
}

/* ---------- CARDS ---------- */

.cards{
    padding:0 20px;
}

.card{
    display:flex;
    align-items:center;
    text-decoration:none;
    margin-bottom:15px;
    border-radius:18px;
    padding:18px;
    transition:.2s;
}

.card:active{
    transform:scale(.98);
}

.icon{
    font-size:30px;
    width:60px;
    text-align:center;
}

.card h3{
    color:#222;
    font-size:18px;
}

.card small{
    color:#666;
    display:block;
    margin-top:3px;
}

.red{
    background:#ffe9ea;
}

.green{
    background:#e9fff0;
}

.white{
    background:#fff;
    border:1px solid #ececec;
}

/* ---------- INSTALL ---------- */

#installApp{
    margin:25px 20px;
    padding:18px;
    border:none;
    border-radius:16px;
    background:#111;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    display:none;
}

/* ---------- FOOTER SPACE ---------- */

.mobile::after{
    content:"";
    height:25px;
}
/* ---------- COUPONS ---------- */

.coupon{
    background:#fff;
    border:2px dashed #E31E24;
    border-radius:22px;
    overflow:hidden;
    margin:20px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.couponTop{
    background:#E31E24;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:34px;
    font-weight:800;
    letter-spacing:1px;
}

.coupon h2{
    text-align:center;
    font-size:24px;
    margin:20px;
}

.coupon p{
    text-align:center;
    color:#666;
    margin:0 20px 25px;
}

.coupon .btn{
    display:block;
    text-decoration:none;
    background:#E31E24;
    color:#fff;
    margin:20px;
    padding:16px;
    border-radius:14px;
    text-align:center;
    font-weight:bold;
}

.secondary{
    display:block;
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#333;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    margin-top:10px;
}

.logo{
    width:110px;
    height:110px;
}

.card{
    transition:0.2s ease;
    box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.card:active{
    transform:scale(.98);
}