:root {
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #00b894;
    --accent-hover: #00a885;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --background: #121212;
    --card-bg: #1e1e1e;
    --border: #333;
    --shadow: rgba(0, 0, 0, 0.3);
	--border-radius: 7px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--background) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
	background-color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
	justify-content: center;
	text-decoration: none;
	color: var(--text);
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
	transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.hero-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-highlight {
    position: absolute;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.highlight-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.highlight-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

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

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
    border-color: var(--accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0rem;
}

.step {
    text-align: center;
    padding: 0rem 1rem;
    position: relative;
}

.step:nth-child(1):before {
    border-top-left-radius: 1.5px;
    border-bottom-left-radius: 1.5px;
}

.step:nth-child(4):before {
    border-top-right-radius: 1.5px;
    border-bottom-right-radius: 1.5px;
}

.step::before {
    background-color: var(--accent);
    content: '';
    display: block;
    height: 3px;
    position: relative;
    top: calc(31.5px);
    width: 120%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--card-bg) 100%);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-light {
    background: var(--text);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--accent);
    color: var(--primary);
}

footer {
    background: var(--primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4) {
	padding-left: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.copyright a {
    color: var(--text-muted);
    text-decoration: none;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	z-index: 1000;
	opacity: 0;
	animation: fadeIn 0.8s ease forwards;
	transition: opacity 0.3s ease;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.banner-container {
	width: 100%;
	max-width: 811px;
	background: var(--background);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transform: translateY(20px);
	transition: var(--transition);
	opacity: 0;
	animation: slideUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.banner {
	max-height: 375px;
	padding: 25px;
	border-radius: 15px;
	transition: var(--transition);
	position: relative;
}

.promo-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-height: 750px;
	overflow: hidden;
	transition: var(--transition);
}

.consent-section {
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
	opacity: 0;
}

.banner.expanded .promo-section {
	max-height: 0;
	opacity: 0;
	padding: 0;
}

.banner.expanded .consent-section {
	max-height: 750px;
	opacity: 1;
}

.banner-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.banner-icon {
	background: var(--accent);
	width: 50px;
	height: 50px;
	border-radius: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.banner-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--white);
}

.banner-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--text);
}

.banner-content {
	line-height: 1.6;
	color: var(--gray);
	padding: 0 10px;
	transition: var(--transition);
}

.banner-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	padding-top: 10px;
	transition: var(--transition);
}

.banner-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(112, 128, 144, 0.2);
	color: var(--gray);
	font-size: 0.9rem;
	transition: var(--transition);
	transform: translateY(20px);
	opacity: 0;
}

.banner.expanded .banner-footer {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.4s;
}

.banner-footer a {
	color: var(--text-muted);
	text-decoration: none;
	position: relative;
}

.banner-footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.banner-footer a:hover::after {
	width: 100%;
}

.banner-footer a:hover {
	color: var(--primary);
}

::-webkit-scrollbar {
    width: 7.5px;
    -webkit-appearance: none;
    z-index: 1000000;
}

::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

::-webkit-scrollbar-track {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

::-webkit-overflow-scrolling:touch {
    background: #707070;
    width: 5px;
}

@media (max-width: 1080px) {
	.steps {
		grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
        gap: 1rem;
	}

	.step::before {
		display: none;
	}
}
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .banner-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 598px) {
	.hero-image {
		display: none;
	}
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}