/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
	/* Colors */
	--color-main: #fff;
	--color-main-light: #FAFAFA;
	--color-main-light2: #AFB0B3;
	--color-main-dark: #121212;
	--color-second: rgba(1, 173, 255);
	--color-second-light: rgba(1, 173, 255, 0.15);
	--color-green: #DEFD66;
	--color-light: rgba(0, 0, 0, 0.1);
	--color-light-2: #fdd866;
	--color-light-3: #EBEFF2;
	--color-bright: #121212;
	--color-gray: #AFB0B3;
	--color-error: #E01616;
	--color-error-light: #F4A9A9;

	/* Spacing */
	--size-1: 8px;
	--size-2: 16px;
	--size-3: 32px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-main-dark);
    background: var(--color-main);
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--size-2);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* Flexbox utilities */
.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--size-1);
}

.flex-wrap {
	flex-wrap: wrap;
}

.content-start {
	justify-content: start;
}

.wrapper-cards {
	align-items: stretch;
}

/* Spacing utilities */
.mb-1 {
	margin-bottom: var(--size-1);
}

.mb-2 {
	margin-bottom: var(--size-2);
}

/* Text utilities */
.text-center {
	text-align: center;
}

.relative {
	position: relative;
}

.d-none {
	display: none;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
	padding: var(--size-2) 0;
}

.logo {
	width: 40px;
}

.nav {
	display: flex;
	justify-content: center;
	gap: var(--size-1);
}

.nav-link {
	background: var(--color-main-light);
	border-radius: var(--size-1);
	color: var(--color-main-dark);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	padding: 4px var(--size-2);
	transition: background-color 0.3s ease;
}

.nav-link:hover {
	background: var(--color-green);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.title {
	font-size: 18px;
	font-weight: 500;
}

.h2 {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.title-second {
	display: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
	background: var(--color-green);
	border-radius: var(--size-2);
	border: none;
	color: var(--color-main-dark);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	padding: var(--size-2) var(--size-3);
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-main {
	font-weight: 700;
	max-width: 300px;
}

.btn-second {
	background-color: var(--color-main-dark);
	color: var(--color-main);
}

.btn-light {
	background-color: var(--color-light);
	color: var(--color-main-dark);
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(222, 253, 102, 0.3);
}

/* ========================================
   CARDS
   ======================================== */
/* Main card (hero image) */
.card-main {
	width: 100%;
	max-width: 1024px;
}

/* Base card styles */
.card {
	line-height: 1.2;
	flex-grow: 1;
	flex-basis: 40%;
	color: inherit;
	display: block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}

/* Card variants */
.card-gray {
	background-color: var(--color-main-light);
	border-radius: var(--size-2);
	padding: var(--size-2);
}

.card-green {
	background-color: var(--color-green);
	border-radius: var(--size-2);
	padding: var(--size-2);
	text-decoration: none;
}

.card-green:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(222, 253, 102, 0.3);
}

/* Card link wrapper */
.card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	height: 100%;
}

/* Card content */
.card-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: var(--size-2);
	text-align: center;
}

.card-desc {
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	color: var(--color-main-dark);
}

.card-price-old {
	margin-bottom: var(--size-2);
	font-size: 16px;
}

/* Pricing section specific styles */
#pricing .card .card-title {
	font-size: 18px;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

#pricing .card .card-title b {
	font-size: 44px;
}

/* ========================================
   CAROUSEL
   ======================================== */
.carusel {
    position: relative;
    width: 100%;
    /* Prevent text selection during swipe */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Smooth touch scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent zoom on double tap */
    touch-action: pan-y pinch-zoom;
    overflow: hidden;
}

.carusel-item {
    margin: 0 auto;
    transition: all 0.5s ease;
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    transform: translateX(0);
}

/* Carousel animation classes */
.carusel-item.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.carusel-item.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

.carusel-item.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
}

.carusel-item.slide-out-right {
    animation: slideOutRight 0.5s ease forwards;
}

/* Carousel item content */
.carusel-item-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.carusel-item-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: var(--size-1);
    margin-bottom: var(--size-2);
}

.carusel-item-header-text {
    font-size: 14px;
}

.carusel-item-header-text-name {
    font-weight: 600;
    color: var(--color-main-dark);
}

.carusel-item-header-text-stars {
    font-size: 12px;
}

.carusel-item-content {
    font-size: 14px;
    font-style: italic;
    color: var(--color-main-dark);
    line-height: 1.4;
}

/* Carousel navigation */
.carousel-btn:hover {
	background: var(--color-light-2) !important;
	transform: translateY(-50%) scale(1.1) !important;
}

.carousel-btn:disabled {
	cursor: not-allowed;
}

.carousel-dot:hover {
	background: var(--color-green) !important;
	transform: scale(1.2);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	background: var(--color-main-light);
	overflow: hidden;
	transition: all 0.3s ease;
}

/* FAQ item border radius */
.faq-item:first-child {
	border-top-left-radius: var(--size-2);
	border-top-right-radius: var(--size-2);
}

.faq-item:last-child {
	border-bottom-left-radius: var(--size-2);
	border-bottom-right-radius: var(--size-2);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--size-2);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.faq-question h3 {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-main-dark);
	margin: 0;
}

.faq-toggle {
	font-size: 18px;
	font-weight: 300;
	color: var(--color-main-dark);
	transition: transform 0.1s ease;
	transform: rotate(0deg);
}

.faq-item.active .faq-toggle {
	transform: rotate(-90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 var(--size-2);
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 var(--size-2) var(--size-2) var(--size-2);
}

.faq-answer p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-main-dark);
	margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
	background: var(--color-main-dark);
	color: var(--color-main);
	padding: var(--size-3) 0 var(--size-2) 0;
	margin-top: var(--size-3);
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: var(--size-3);
	margin-bottom: var(--size-3);
}

.footer-section h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: var(--size-2);
	color: var(--color-green);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--size-1);
}

.footer-link {
	display: flex;
	align-items: center;
	gap: var(--size-1);
	color: var(--color-main);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--color-green);
}

.footer-icon {
	font-size: 16px;
	width: 20px;
	text-align: center;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: var(--size-2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
	font-size: 12px;
	color: var(--color-main-light2);
}

.footer-social {
	display: flex;
	gap: var(--size-1);
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--color-green);
	transform: translateY(-2px);
}

.social-icon {
	font-size: 18px;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
	margin-bottom: var(--size-3);
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* Carousel slide animations */
@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Small mobile devices */
@media (max-width: 374px) {
    .container {
        padding: 0 var(--size-1);
    }

    .h2 {
        font-size: 20px;
    }

    .title {
        font-size: 16px;
    }
}

/* Medium screens and up */
@media (min-width: 400px) {
	.logo-w-text {
		justify-content: center;
	}
}

@media (min-width: 640px) {
	.title-second {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		position: absolute;
		top: 30px;
		left: 0;
		right: 0;
		z-index: 1;
		font-size: 24px;
	}

	.d-md-block {
		display: block;
	}

	.d-md-none {
		display: none;
	}
}

/* Large screens */
@media (min-width: 1025px) {
	.card-main {
		border-radius: 64px;
		margin: 0 auto;
	}

	.title-second {
		top: 40px;
	}
}

/* ========================================
   BROWSER COMPATIBILITY
   ======================================== */
/* Smooth scrolling (commented out) */
html {
    /* scroll-behavior: smooth; */
}

/* Custom scrollbar (commented out) */
/* ::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-main-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-light-2);
} */
