:root {
--pink: #ff005d;
--blue: #00cfff;
--bg: #121212;
--text: #ffffff;
}

body {
margin: 0;
padding: 0;
font-family: 'Fugaz One', cursive;
color: var(--text);
background: var(--bg);
overflow: hidden;
height: 100vh;
}

.landing {
position: relative;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.background { position: absolute; inset: 0; z-index: 0; }
.background-image { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: rgba(18, 18, 18, 0.576); }

.top-logo {
position: absolute;
top: 4px;
left: 20px;
z-index: 50;
}
.top-logo img {
height: 180px;
width: auto;
filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
transition: transform 0.2s ease;
}
.top-logo img:hover {
transform: scale(1.05);
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.center {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
align-items: stretch;
width: 85%;
max-width: 1200px;
height: 600px;
border-radius: 16px;
overflow: hidden;
}

.left { flex: 1; position: relative; overflow: hidden; }
.carousel { width: 100%; height: 100%; position: relative; }
.carousel img {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0; transition: opacity 1s ease-in-out;
}
.carousel img.active { opacity: 1; }

.right { flex: 1; display: flex; justify-content: center; align-items: center; }

.card {
background: rgba(0, 0, 0, 0.7);
padding: 2.5rem;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.15);
max-width: 400px;
width: 90%;
text-align: center;
position: relative;
overflow: visible;
}

.badge {
position: absolute;
top: -45px;
left: -35px;
width: 110px;
}

h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--text);
}

.benefits {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
margin-bottom: 1rem;
}
.benefits div {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 8px;
padding: 0.5rem;
}
.benefits strong { display: block; color: var(--blue); }
.benefits span { font-size: 0.75rem; opacity: 0.8; }

.urgency {
background: var(--pink);
color: var(--text);
border-radius: 8px;
padding: 0.6rem;
margin: 1rem 0;
font-size: 0.9rem;
}

.footer-text { font-size: 0.7rem; opacity: 0.6; margin-top: 1rem; }

.carousel-inline {
display: none;
position: relative;
width: 100%;
height: 220px;
border-radius: 12px;
overflow: hidden;
margin: 10px auto 16px;
border: 1px solid rgba(255,255,255,.12);
}
.carousel-inline img {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0; transition: opacity .8s ease-in-out;
}
.carousel-inline img.active { opacity: 1; }

.badge-mobile {
position: absolute !important;
top: 8px; left: 8px;
width: 72px;
z-index: 4;
pointer-events: none;
}

@media (max-width: 900px) {
html, body {
height: var(--vvh);
overflow: hidden !important;
overscroll-behavior: none;
-webkit-overflow-scrolling: auto;
}

.landing {
position: fixed;
inset: 0;
height: 100svh;
padding: 24px;
overflow: hidden;
justify-content: flex-start;
padding-top: 1vh;
padding-bottom: calc(1vh + env(safe-area-inset-bottom));
}

.kb-on body,
body.kb-on {
overflow: auto !important;
}

.kb-on .landing {
position: static;
height: auto;
min-height: 100svh;
overflow: visible;
padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

input, textarea, select { font-size: 16px !important; -webkit-text-size-adjust: 100%; }

.center {
width: 100%;
max-width: 560px;
margin: 0 auto;
height: auto;
max-height: calc(var(--vvh) - 48px);
display: flex;
flex-direction: column;
justify-content: center;
gap: 16px;
padding: 0;
}

.left { display: none; }
.logo { display: none !important; }
.top-logo { display: none; }
.carousel-inline { display: block !important; }
.footer-text { display: none; }

.right { width: 100%; align-items: stretch; }
.card { width: 100%; max-width: 560px; padding: 32px 28px; margin: 0 auto; overflow: visible; }

.badge-mobile {
position: absolute !important;
top: 10px; left: 10px;
width: 72px; z-index: 4; pointer-events: none;
}

.benefits div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0.75rem;
}

.benefits strong {
font-size: 1rem;
line-height: 1.2;
}

.benefits span {
font-size: 0.8rem;
opacity: 0.8;
}

input, textarea, select {
font-size: 16px !important;
-webkit-text-size-adjust: 100%;
}
}