* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #eef2f6; 
            color: #333;
            line-height: 1.5;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }


        .mobile-wrapper {
            width: 100%;
            max-width: 480px; 
            background-color: #ffffff;
            position: relative;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            /*padding-bottom: 40px;*/
            overflow: hidden;
        }


        :root {
            --primary-blue: #3fa9f5;
            --dark-blue: #1c3d5a;
            --text-blue: #2d88d2;
            --light-bg: #f3f6fa;
            --btn-gradient-start: #56ccf2;
            --btn-gradient-end: #2f80ed;
        }


        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0);
            z-index: 10;
            position: relative;
            margin-bottom: -65px;
        }
        .logo { height: 35px; }
        .search-icon { width: 24px; height: 24px; opacity: 0.6; cursor: pointer; }


        .hero {
            position: relative;
            margin-bottom: 20px;
        }


        .hero-image-container {
            position: relative;
            width: 100%;
            height: 400px; 
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        }
        

        .hero-img {
            position: relative !important;
    left: 75px !important;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
                -webkit-mask-image: linear-gradient(to left, #000000 46%, #00000000 101%);
        }


        .hero-content {
            position: absolute;
            top: 20px;
            left: 20px;
            max-width: 50%; 
            padding-top: 50px;
        }

        h1 {
            font-size: 24px;
            line-height: 1.2;
            color: #222;
            margin-bottom: 10px;
        }
        .verified-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            vertical-align: middle;
            margin-left: 4px;
        }
        .verified-icon2 {
            display: inline-block;
            width: 35px;
            height: 35px;
            vertical-align: middle;
            margin-left: 4px;
        }
        .verified-icon3 {
            display: inline-block;
            width: 20px;
            height: 15px;
            vertical-align: middle;
            margin-left: 10px;
        }
        .verified-icon4 {
            display: inline-block;
            width: 15px;
            height: 15px;
            vertical-align: middle;
            margin-left: 12px;
        }

        .hero-desc {
            font-size: 13px;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .features-list {
            list-style: none;
            margin-bottom: 20px;
        }
        .features-list li {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .check-box {
            width: 18px;
            height: 18px;
            background: #dff0fc;
            color: #2d88d2;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }


        .btn-hero-wrapper {
            position: relative;
            margin: -40px 20px 0 20px; 
            z-index: 5;
            text-align: center;
        }
        .btn-main {
            display: block;
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
            color: white;
            text-align: center;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 8px 20px rgba(47, 128, 237, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        

        .hand-cursor {
            position: absolute;
            bottom: -15px;
            right: 15%;
            width: 45px;
            animation: float 2s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }


        .bio-section {
            text-align: center;
            padding: 30px 50px;
            background: #fff;
        }
        .section-title {
            font-size: 20px;
            color: #222;
            margin-bottom: 15px;
        }
        .highlight { color: var(--text-blue); font-weight: 700; }
        
        .bio-text {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .bio-text.last { margin-bottom: 0; }


        .unlock-section {
            background: var(--light-bg);
            padding: 25px 20px;
            border-radius: 20px 20px 0 0;
            margin-top: 10px;
        }
        .unlock-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 15px;
        }
        .unlock-card {
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .card-icon {
            font-size: 18px;
            color: var(--text-blue);
            margin-bottom: 5px;
        }
        .card-title {
            font-weight: 700;
            font-size: 13px;
            color: #333;
        }
        .card-sub {
            font-size: 11px;
            color: #888;
            line-height: 1.3;
        }


        .how-works {
            background: var(--light-bg);
            padding: 10px 20px 30px 20px;
            text-align: center;
        }
        .steps-container {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            text-align: left;
            gap: 5px;
        }
        .step-item {
            flex: 1;
            font-size: 11px;
            color: #444;
            position: relative;
            padding-left: 2px;
        }
        .step-number {
            display: inline-block;
            background: var(--btn-gradient-end);
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            text-align: center;
            line-height: 18px;
            font-size: 10px;
            font-weight: bold;
            margin-right: 4px;
        }
        .step-text b { display: block; font-size: 12px; color: #222; margin-bottom: 2px; }
        .step-text span { color: var(--text-blue); font-weight: 600; }

        .btn-big-blue {
            background: linear-gradient(90deg, #4facfe, #00f2fe); 
            background: #2d9cdb;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            padding: 15px;
            width: 80%;
            border-radius: 10px;
            font-size: 16px;
            border: none;
            box-shadow: 0 5px 0 #1a6fa0; 
            margin-top: 15px;
            position: relative;
            cursor: pointer;
                width: 100%;
    display: block;
        }
        a.btn-big-blue{
            text-decoration: unset;
        }
        .btn-big-blue:active {
            transform: translateY(2px);
            box-shadow: 0 3px 0 #1a6fa0;
        }

        .social-proof {
            display: flex;
            justify-content: center;
            gap: 15px;
            align-items: center;
            margin-bottom: 20px;
        }
        .social-icon { width: 20px; height: 20px; opacity: 0.7; }


        .why-stay {
            background: white;
            padding: 20px;
            margin: 0 10px 20px 10px;
            border-radius: 15px;
            display: flex;
            gap: 15px;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }
        .small-portrait {
            width: 80px;
            height: 100px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .why-text h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .why-text p {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        p.bio-text.last {
    margin-bottom: 30px;
}