.hero-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f5 50%, #f0f9ff 100%);
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    width: 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.hero-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.hero-badge {
    display: inline-block;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: "Livvic", sans-serif;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #0a1119;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-btn-primary {
    background: #0a1119;
    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Figtree", sans-serif;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #00a3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-trust-text {
    font-size: 13px;
    color: #0a1119;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
}

.hero-stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-stat-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a1119;
    margin-bottom: 6px;
    font-family: "Figtree", sans-serif;
}

.hero-stat-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    font-family: "Livvic", sans-serif;
}

/* Right Content - Image */
.hero-right {
    position: relative;
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.5s forwards;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 550px;
}

.hero-image-background {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 450px;
    background: #00a3ff;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image-background {
    transform: translateX(-50%) scale(1.05);
}

.hero-image-wrapper img {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-right {
        order: -1;
    }

    .hero-code-snippet {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-float-element {
        display: none;
    }
}

@media (max-width: 577px) {
    .hero-section {
        padding: 40px 15px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-image-wrapper {
        height: 400px;
        max-width: 100%;
        overflow: visible;
    }

    .hero-image-background {
        width: 320px;
        height: 320px;
    }

    .hero-image-wrapper img {
        max-width: 100%;
        height: 400px;
    }

    .hero-right {
        padding: 0 10px;
    }

    .hero-avatars {
        transform: scale(0.9);
    }

    .hero-trust-text {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .hero-image-background {
        width: 280px;
        height: 280px;
    }

    .hero-image-wrapper img {
        height: 350px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .hero-stat-title {
        font-size: 14px;
    }

    .hero-stat-description {
        font-size: 12px;
    }
}

.hero-more-section {
    min-height: 20vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-more-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-more-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-more-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}

.hero-more-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1119;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.hero-more-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.4s forwards;
}

.hero-more-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a3ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.hero-more-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a3ff;
    transition: width 0.3s ease;
}

.hero-more-link:hover {
    color: #0088cc;
    transform: translateX(4px);
}

.hero-more-link:hover::after {
    width: 100%;
}

.hero-more-link i {
    transition: transform 0.3s ease;
}

.hero-more-link:hover i {
    transform: translateX(4px);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-more-content {
        gap: 50px;
    }

    .hero-more-title {
        font-size: 32px;
    }

    .hero-more-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-more-section {
        padding: 50px 20px;
    }

    .hero-more-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-more-title {
        font-size: 28px;
    }

    .hero-more-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 577px) {
    .hero-more-section {
        padding: 40px 15px;
    }

    .hero-more-title {
        font-size: 24px;
    }

    .hero-more-description {
        font-size: 13px;
    }

    .hero-more-link {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .hero-more-title {
        font-size: 22px;
    }

    .hero-more-description {
        font-size: 12px;
    }
}

.serv-section {
	width: 100%;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
	background: #fafbfc;
}

.serv-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.serv-header {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}

.serv-header-left {
	flex: 1;
}

.serv-header-right {
	flex: 1;
	display: flex;
	align-items: center;
}

.serv-label {
	display: inline-block;
	border-radius: 20px;
	font-size: 14px;
	font-family: "Livvic", sans-serif;
	color: #7c3aed;
	margin-bottom: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.serv-title {
	font-size: 32px;
	font-weight: 700;
	color: #0a1119;
	line-height: 1.3;
}

.serv-desc {
	font-size: 14px;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}

.serv-explore-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #00a3ff;
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition: gap 0.3s ease;
}

.serv-explore-link:hover {
	gap: 12px;
	background-color: #00a3ff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
}

.serv-explore-link i {
	font-size: 12px;
}

.serv-carousel-wrapper {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.serv-cards {
	display: flex;
	gap: 20px;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.serv-card {
	flex: 0 0 calc(33.333% - 14px);
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 480px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.serv-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.serv-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.serv-card:hover .serv-card-image {
	transform: scale(1.08);
}

.serv-card-overlay {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.7);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 22px 24px;
	border-radius: 14px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.serv-card:hover .serv-card-overlay {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	left: 20px;
	right: 20px;
}

.serv-card-category {
	font-size: 20px;
	font-weight: 700;
	color: #0a1119;
	margin-bottom: 10px;
}

.serv-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #00a3ff;
	text-decoration: none;
	font-weight: 500;
	transition: gap 0.3s ease;
}

.serv-card-link:hover {
	gap: 10px;
}

.serv-card-link i {
	font-size: 11px;
}

.serv-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.serv-footer-text {
	font-size: 13px;
	color: #64748b;
}

.serv-footer-text .serv-highlight {
	color: #7c3aed;
	font-weight: 600;
}

.serv-nav {
	display: flex;
	gap: 10px;
}

.serv-nav-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #64748b;
	font-size: 14px;
}

.serv-nav-btn:hover:not(:disabled) {
	background: #0a1119;
	color: #ffffff;
	border-color: #0a1119;
}

.serv-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.serv-decorative {
	position: absolute;
	bottom: 80px;
	left: 20px;
	width: 50px;
	height: 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	padding: 8px;
}

.serv-decorative-dot {
	width: 3px;
	height: 3px;
	background: #999;
	border-radius: 50%;
}

@media (max-width: 1024px) {
	.serv-section {
		padding: 60px 20px;
	}

	.serv-header {
		gap: 40px;
	}

	.serv-title {
		font-size: 28px;
	}

	.serv-card {
		flex: 0 0 calc(50% - 10px);
		height: 450px;
	}

	.serv-footer {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.serv-decorative {
		display: none;
	}
}

@media (max-width: 768px) {
	.serv-section {
		padding: 50px 16px;
	}

	.serv-header {
		flex-direction: column;
		gap: 20px;
	}

	.serv-title {
		font-size: 24px;
	}

	.serv-desc {
		font-size: 13px;
	}

	.serv-card {
		flex: 0 0 100%;
		height: 420px;
	}

	.serv-card-category {
		font-size: 18px;
	}

	.serv-footer-text {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.serv-title {
		font-size: 22px;
	}

	.serv-card {
		height: 380px;
	}

	.serv-card-overlay {
		padding: 18px 20px;
	}
}

.why-section {
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 60px 40px;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.9)
		),
		url(../images/shake1.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.why-container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.why-left small {
	color: #7c3aed;
	font-weight: 600;
	letter-spacing: 0.08em;
	font-size: 12px;
	text-transform: uppercase;
}

.why-left h1 {
	font-size: 56px;
	line-height: 1.1;
	margin: 20px 0;
	color: #0a1119;
	font-weight: 700;
}

.why-left p {
	max-width: 540px;
	line-height: 1.8;
	color: #64748b;
	margin-bottom: 36px;
	font-size: 15px;
}

.why-actions {
	display: flex;
	gap: 32px;
	align-items: center;
	flex-wrap: wrap;
}

.why-actions a {
	color: #00a3ff;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
}

.why-actions a:hover {
	color: #7c3aed;
	transform: translateX(3px);
}

.why-actions a i {
	transition: transform 0.3s ease;
}

.why-actions a:hover i {
	transform: translateX(4px);
}

.why-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	position: relative;
}

.why-right::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #0a1119;
	transform: translateX(-50%);
}

.why-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.why-col-left {
	margin-top: 60px;
}

.why-col-right {
	margin-top: -40px;
}

.why-feature {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 40px;
	border-bottom: 1px solid #0a1119;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.why-feature:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.why-feature:nth-child(1) {
	animation-delay: 0.1s;
}

.why-feature:nth-child(2) {
	animation-delay: 0.2s;
}

.why-feature:nth-child(3) {
	animation-delay: 0.3s;
}

.why-feature:nth-child(4) {
	animation-delay: 0.4s;
}

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

.why-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	color: #0a1119;
}

.why-feature:hover .why-icon {
	transform: scale(1.1);
}

.why-feature-content h3 {
	margin-bottom: 10px;
	font-size: 17px;
	color: #0a1119;
	font-weight: 600;
}

.why-feature-content p {
	font-size: 13px;
	line-height: 1.7;
	color: #64748b;
}

.why-feature-content a {
	color: #7c3aed;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.3s ease;
}

@media (max-width: 1024px) {
	.why-container {
		gap: 60px;
	}

	.why-left h1 {
		font-size: 48px;
	}

	.why-right {
		column-gap: 40px;
	}

	.why-col-left {
		margin-top: 40px;
	}

	.why-col-right {
		margin-top: -20px;
	}
}

@media (max-width: 768px) {
	.why-section {
		padding: 50px 30px;
	}

	.why-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.why-left h1 {
		font-size: 40px;
	}

	.why-left p {
		font-size: 14px;
	}

	.why-right {
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
	}

	.why-right::after {
		display: block;
	}

	.why-col-left {
		margin-top: 0;
	}

	.why-col-right {
		margin-top: 0;
	}

	.why-col {
		gap: 35px;
	}

	.why-feature {
		padding-bottom: 35px;
	}
}

@media (max-width: 640px) {
	.why-section {
		padding: 40px 20px;
	}

	.why-left h1 {
		font-size: 32px;
	}

	.why-actions {
		gap: 20px;
	}

	.why-right {
		grid-template-columns: 1fr;
		column-gap: 0;
	}

	.why-right::after {
		display: none;
	}

	.why-col {
		gap: 0;
	}

	.why-feature {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.why-feature:last-child {
		border-bottom: 1px solid #0a1119;
		padding-bottom: 30px;
		margin-bottom: 0;
	}

	.why-col-right .why-feature:first-child {
		margin-top: 30px;
	}

	.why-col-right .why-feature:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.why-icon {
		width: 44px;
		height: 44px;
		font-size: 26px;
	}
}

.tst-section {
	width: 100%;
	padding: 150px 20px;
	background-color: #ffffff;
}

.tst-container {
	max-width: 1400px;
	margin: 0 auto;
}

.tst-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 30px;
	font-size: 13px;
	color: #7c3aed;
}

.tst-badge::before {
	content: "●";
	color: #7c3aed;
	font-size: 12px;
}

.tst-heading {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 60px;
	color: #0a1119;
}

.tst-heading-gray {
	color: #9ca3af;
}

.tst-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.tst-column {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.tst-column::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 2;
	pointer-events: none;
}

.tst-column::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(
		to top,
		#ffffff 0%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 2;
	pointer-events: none;
}

.tst-slider {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tst-column-left .tst-slider {
	animation: tst-scroll-up 40s linear infinite;
}

.tst-column-right .tst-slider {
	animation: tst-scroll-down 40s linear infinite;
}

.tst-column-left .tst-slider:hover,
.tst-column-right .tst-slider:hover {
	animation-play-state: paused;
}

@keyframes tst-scroll-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(calc(-100% / 2));
	}
}

@keyframes tst-scroll-down {
	0% {
		transform: translateY(calc(-100% / 2));
	}
	100% {
		transform: translateY(0);
	}
}

.tst-card {
	background-color: #f9fafb;
	padding: 30px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-shrink: 0;
}

.tst-card-text {
	font-size: 15px;
	line-height: 1.6;
	color: #0a1119;
}

.tst-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tst-author-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.tst-author-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tst-author-name {
	font-size: 15px;
	font-weight: 600;
	color: #0a1119;
}

.tst-author-role {
	font-size: 13px;
	color: #6b7280;
}

.tst-featured {
	background-color: #f9fafb;
	padding: 40px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 30px;
	height: fit-content;
}

.tst-featured-img-wrapper {
	position: relative;
}

.tst-featured-img {
	width: 280px;
	height: 280px;
	object-fit: cover;
	border-radius: 12px;
}

.tst-featured-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: #e9d5ff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #7c3aed;
}

.tst-featured-text {
	font-size: 17px;
	line-height: 1.6;
	color: #0a1119;
}

.tst-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: 100%;
}

.tst-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tst-stat-number {
	font-size: 56px;
	font-weight: 700;
	color: #0a1119;
}

.tst-stat-label {
	font-size: 14px;
	color: #6b7280;
}

@media (max-width: 1024px) {
	.tst-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tst-column {
		height: 500px;
	}

	.tst-column-left .tst-slider,
	.tst-column-right .tst-slider {
		animation: tst-scroll-up 60s linear infinite;
	}

	.tst-heading {
		font-size: 36px;
	}

	.tst-featured-img {
		width: 200px;
		height: 200px;
	}
}

@media (max-width: 768px) {
	.tst-section {
		padding: 100px 20px;
	}

	.tst-heading {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.tst-column {
		height: 450px;
	}

	.tst-card {
		padding: 24px;
	}

	.tst-featured {
		padding: 30px 20px;
	}

	.tst-featured-img {
		width: 160px;
		height: 160px;
	}

	.tst-stat-number {
		font-size: 42px;
	}

	.tst-stats {
		gap: 30px;
	}
}

.cta-section {
	width: 100%;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}

.cta-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.cta-background {
	display: flex;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}

.cta-bg-left {
	flex: 1;
	background: #0a1119;
	position: relative;
}

.cta-bg-right {
	flex: 1;
	background: #00a3ff;
	position: relative;
}

.cta-diagonal {
	position: absolute;
	right: -50px;
	top: 0;
	bottom: 0;
	width: 150px;
	background: #0a1119;
	transform: skewX(-10deg);
	z-index: 1;
}

.cta-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	max-width: 650px;
	text-align: center;
}

.cta-title {
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 20px;
}

.cta-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin-bottom: 32px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 24px;
	background: #ffffff;
	color: #0a1119;
	text-decoration: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #ffffff;
}

.cta-button:hover {
	background: transparent;
	color: #ffffff;
	gap: 16px;
}

.cta-button i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.cta-button:hover i {
	transform: translateX(4px);
}

@media (max-width: 1024px) {
	.cta-section {
		padding: 60px 20px;
	}

	.cta-background {
		height: 380px;
	}

	.cta-content {
		left: 50px;
		transform: translateY(-50%);
		max-width: 500px;
		text-align: left;
	}

	.cta-title {
		font-size: 48px;
	}

	.cta-desc {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 50px 16px;
	}

	.cta-background {
		height: auto;
		min-height: 400px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #0a1119;
	}

	.cta-bg-left {
		display: none;
	}

	.cta-bg-right {
		display: none;
	}

	.cta-diagonal {
		display: none;
	}

	.cta-content {
		position: static;
		transform: none;
		padding: 40px 30px;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-desc {
		font-size: 14px;
	}

	.cta-button {
		padding: 12px 28px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.cta-background {
		border-radius: 16px;
		min-height: 380px;
	}

	.cta-content {
		padding: 30px 24px;
	}

	.cta-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.cta-desc {
		font-size: 13px;
		margin-bottom: 24px;
	}

	.cta-button {
		width: 100%;
		justify-content: center;
	}
}

