* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img{
	pointer-events: none;
}
:root {
    --text-dark: #111111;
    --text-grey: #4A5568;
    --primary-green: #2EA982;
    --bg-dark: #091216;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main), serif;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: -1;
    pointer-events: none;
}

.wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


.left-side {
    width: 50%;
    background-color: #ffffff;
    padding: 40px 63px 40px 140px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.header {
    margin-bottom: 140px;
}

.logo {
    width: 122px;
    height: auto;
}

.content {
    max-width: 540px;
    margin-top: 60px;
}

h1 {
    font-family: Inter, serif;
	font-weight: 600;
	font-size: 50px;
	line-height: 120%;
	
}

.subtitle {
	padding-top: 24px;
    font-family: Inter, serif;
font-weight: 400;
	font-size: 21px;
line-height: 120%;
padding-bottom: 50px;
}

.buttons-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    font-family: Inter, serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	
    padding: 15px 24px;
    border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 1px solid;
}



.btn-primary {
    background-color: #1EA489;
    color: #fff;
	border-color: #1EA489;
}

.btn-primary:hover {
    background-color: #081519;
	border-color: #081519;
}

.btn-secondary {
    background-color: transparent;
    color: #249BE0;
    border-color: #249BE0;
    position: relative;
}

.btn-secondary:hover {
    background-color: #249BE0;
    color: #fff;
	border-color: #249BE0;
}

.btn-icon {
    width: 16px;
    height: 13px;
    margin-left: 8px;
	transition: filter 0.3s ease;
}

.btn-secondary:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.decor-lightning {
    position: absolute;
    right: -70px;
    top: 18%;
    width: 134px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.right-side {
    width: 50%;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.phone-container {
    position: relative;
    width: 242px;
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: #8CDEC1;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(250px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.phone-img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 5;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.float-card {
    position: absolute;
    z-index: 6;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-1 {
	width: 129px;
    height: 162px;
    top: 18%;
    left: -80px;
}

.card-2 {
	width: 194px;
	height: 120px;
    bottom: 22%;
    right: -120px;
}

.decor-gift {
    position: absolute;
    bottom: 80px;
    right: 140px;
    width: 111px;
    height: 111px;
    z-index: 4;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
}



@media (max-width: 1024px) {
    body::after {
        display: none;
    }
    
    .wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .left-side, 
    .right-side {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .left-side {
        padding: 20px;
    }

    .header {
        position: static;
        margin-bottom: 0;
        order: 1;
    }
    
    .logo {
        width: 100px;
    }

    .decor-lightning {
        position: static;
        order: 1; 
        width: 124px;
        margin-bottom: 0;
        transform: none;
        right: auto;
        top: auto;
        display: block;
    }

    .content {
        order: 2;
        max-width: 100%;
        margin-top: 0;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .right-side {
        order: 3;
        margin: 0;
        background-color: transparent;
        padding: 0;
        min-height: auto;
    }
    
    .decor-gift {
        display: none;
    }
    
    .buttons-group {
        order: 4;
    }

    .phone-container {
        width: 178px;
        height: 361px;
    }
    
    .phone-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .card-1 {
        left: -70px;
        top: 15%;
        width: 100px;
        height: 124px;
    }
    
    .card-2 {
        right: -110px;
        bottom: 25%;
        width: 157px;
        height: 93px;
    }

    .buttons-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 20px;
        display: flex;
        padding: 0 20px;
    }
    
    .right-side .buttons-group {
        align-items: center;
        margin-top: 30px;
    }

    .btn {
        width: 100%;
        padding: 18px;
    }

    .glow-effect {
        width: 300px;
        height: 300px;
        filter: blur(100px);
    }
    
    .decor-gift {
        display: none;
    }
}


