	/* Launch Announcement Banner */
		.launch_banner {
			background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
			color: #fff;
			text-align: center;
			padding: 12px 20px;
			font-size: 15px;
			font-weight: 500;
			position: relative;
			z-index: 1000;
		}
		
		.launch_banner a {
			color: #fff;
			text-decoration: underline;
			font-weight: 600;
			margin-left: 8px;
		}
		
		.launch_banner a:hover {
			text-decoration: none;
		}
		
		.launch_banner .launch_icon {
			display: inline-block;
			margin-right: 8px;
			animation: pulse-icon 2s ease-in-out infinite;
		}
		
		@keyframes pulse-icon {
			0%, 100% { transform: scale(1); }
			50% { transform: scale(1.2); }
		}
		
		@media (max-width: 768px) {
			.launch_banner {
				font-size: 13px;
				padding: 10px 15px;
			}
		}
		
		/* AI Employees Grid Section */
		.ai_employees_section {
			background: transparent;
			border-radius: 0;
			padding: 20px 0 40px;
			margin: 0;
			border: none;
			position: relative;
		}
		
		/* Integrations Banner Section */
		.integrations_banner_section {
			background: #0a0a0a;
			padding: 80px 0;
			text-align: center;
		}
		
		.integrations_banner_title {
			color: #fff;
			font-size: 36px;
			font-weight: 600;
			margin: 0 0 50px 0;
			line-height: 1.3;
		}
		
		.integrations_banner_title span {
			color: #ef4444;
		}
		
		.integrations_carousel_wrapper {
			position: relative;
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 70px;
		}
		
		.integrations_carousel {
			overflow: hidden;
			position: relative;
		}
		
		.integrations_page {
			display: none;
			opacity: 0;
			transition: opacity 0.4s ease;
		}
		
		.integrations_page.active {
			display: block;
			opacity: 1;
		}
		
		.integrations_grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 20px;
		}
		
		.integration_brand_box {
			display: flex;
			align-items: center;
			gap: 12px;
			padding: 18px 20px;
			background: rgba(255, 255, 255, 0.05);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 12px;
			transition: all 0.2s ease;
		}
		
		.integration_brand_box:hover {
			background: rgba(255, 255, 255, 0.1);
			border-color: rgba(255, 255, 255, 0.2);
			transform: translateY(-2px);
		}
		
		.integration_brand_icon {
			width: 32px;
			height: 32px;
			flex-shrink: 0;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		
		.integration_brand_icon img {
			width: 28px;
			height: 28px;
			object-fit: contain;
		}
		
		.integration_brand_name {
			font-size: 15px;
			font-weight: 500;
			color: #fff;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}
		
		.integrations_arrow {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 48px;
			height: 48px;
			border-radius: 50%;
			border: 1px solid rgba(255, 255, 255, 0.2);
			background: transparent;
			color: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
			z-index: 10;
		}
		
		.integrations_arrow:hover {
			border-color: #ef4444;
			background: rgba(239, 68, 68, 0.1);
		}
		
		.integrations_arrow svg {
			width: 22px;
			height: 22px;
		}
		
		.integrations_arrow_prev {
			left: 0;
		}
		
		.integrations_arrow_next {
			right: 0;
		}
		
		.integrations_dots {
			display: flex;
			justify-content: center;
			gap: 10px;
			margin-top: 30px;
		}
		
		.integrations_dot {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.3);
			cursor: pointer;
			transition: all 0.3s ease;
		}
		
		.integrations_dot:hover {
			background: rgba(255, 255, 255, 0.5);
		}
		
		.integrations_dot.active {
			background: #ef4444;
			width: 24px;
			border-radius: 4px;
		}
		
		@media (max-width: 768px) {
			.integrations_banner_section {
				padding: 50px 20px;
			}
			
			.integrations_banner_title {
				font-size: 22px;
				margin-bottom: 35px;
			}
			
			.integrations_carousel_wrapper {
				padding: 0 45px;
			}
			
			.integrations_grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 10px;
			}
			
			.integration_brand_box {
				padding: 10px 12px;
				gap: 8px;
			}
			
			.integration_brand_icon {
				width: 24px;
				height: 24px;
			}
			
			.integration_brand_icon img {
				width: 20px;
				height: 20px;
			}
			
			.integration_brand_name {
				font-size: 11px;
			}
			
			.integrations_arrow {
				width: 36px;
				height: 36px;
			}
			
			.integrations_arrow svg {
				width: 16px;
				height: 16px;
			}
		}
		
		/* Hero title - keep on one line and centered */
		.hero_sec .detail {
			max-width: 100% !important;
			width: 100% !important;
			text-align: center !important;
			position: relative;
			z-index: 200;
		}
		
		.hero_sec .detail h1 {
			white-space: normal;
			font-size: clamp(28px, 5vw, 72px);
			text-align: center;
		}
		
		/* Hero Search Input */
		.hero_search_wrapper {
			position: relative;
			display: flex;
			align-items: center;
			max-width: 600px;
			margin: 30px auto 0;
			background: #fff;
			border-radius: 60px;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
			overflow: visible;
			transition: box-shadow 0.3s ease;
			z-index: 200;
		}
		
		.hero_search_wrapper:focus-within {
			box-shadow: 0 6px 30px rgba(239, 68, 68, 0.15), 0 0 0 2px rgba(239, 68, 68, 0.3);
		}
		
		.hero_search_input {
			flex: 1;
			border: none;
			outline: none;
			padding: 18px 24px;
			font-size: 16px;
			color: #1a1a2e;
			background: transparent;
		}
		
		.hero_search_input::placeholder {
			color: #94a3b8;
		}
		
		.hero_search_btn {
			width: 52px;
			height: 52px;
			min-width: 52px;
			margin: 6px;
			border-radius: 50%;
			border: none;
			background: #ef4444;
			color: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
		}
		
		.hero_search_btn:hover {
			background: #dc2626;
			transform: scale(1.05);
		}
		
		.hero_search_btn svg {
			width: 22px;
			height: 22px;
		}
		
		/* Search Dropdown */
		.hero_search_dropdown {
			position: absolute;
			top: calc(100% + 8px);
			left: 0;
			right: 0;
			background: #fff;
			border-radius: 12px;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
			max-height: 280px;
			overflow-y: auto;
			opacity: 0;
			visibility: hidden;
			transform: translateY(-10px);
			transition: all 0.2s ease;
			z-index: 500;
			padding: 6px 0;
		}
		
		.hero_search_dropdown.active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}
		
		.hero_search_dropdown:empty {
			display: none;
		}
		
		.hero_search_dropdown .search_result_item {
			display: flex !important;
			flex-direction: row !important;
			align-items: center !important;
			gap: 12px !important;
			padding: 8px 16px !important;
			cursor: pointer;
			transition: background 0.15s ease;
			text-decoration: none !important;
			color: inherit;
		}
		
		.hero_search_dropdown .search_result_item:hover,
		.hero_search_dropdown .search_result_item.active {
			background: #f5f5f5;
		}
		
		.hero_search_dropdown .search_result_avatar {
			width: 36px !important;
			height: 36px !important;
			min-width: 36px !important;
			border-radius: 8px !important;
			background: linear-gradient(135deg, #e8ecf4 0%, #d5dce8 100%) !important;
			display: flex !important;
			align-items: center !important;
			justify-content: center !important;
			overflow: hidden;
			flex-shrink: 0;
		}
		
		.hero_search_dropdown .search_result_avatar img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		
		.hero_search_dropdown .search_result_avatar svg {
			width: 18px !important;
			height: 18px !important;
			opacity: 0.4;
		}
		
		.hero_search_dropdown .search_result_info {
			flex: 1;
			min-width: 0;
			display: flex !important;
			flex-direction: column !important;
			gap: 2px !important;
			text-align: left !important;
		}
		
		.hero_search_dropdown .search_result_title {
			display: block !important;
			font-size: 14px !important;
			font-weight: 500 !important;
			color: #1a1a2e !important;
			margin: 0 !important;
			padding: 0 !important;
			line-height: 1.3 !important;
			text-align: left !important;
		}
		
		.hero_search_dropdown .search_result_desc {
			display: block !important;
			font-size: 12px !important;
			color: #888 !important;
			margin: 0 !important;
			padding: 0 !important;
			white-space: nowrap !important;
			overflow: hidden !important;
			text-overflow: ellipsis !important;
			line-height: 1.3 !important;
			text-align: left !important;
		}
		
		.hero_search_dropdown .search_result_btn {
			flex-shrink: 0;
			padding: 5px 14px !important;
			background: #ef4444 !important;
			color: #fff !important;
			border: none !important;
			border-radius: 6px !important;
			font-size: 12px !important;
			font-weight: 500 !important;
			cursor: pointer;
			transition: background 0.15s ease;
		}
		
		.hero_search_dropdown .search_result_item:hover .search_result_btn {
			background: #dc2626 !important;
		}
		
		.hero_search_dropdown .search_no_results {
			padding: 16px;
			text-align: center;
			color: #888;
			font-size: 13px;
		}
		
		/* Modern Header Styling */
		.header_sec {
			position: sticky;
			top: 0;
			z-index: 100;
			background: rgba(246, 246, 248, 0.8);
			backdrop-filter: blur(12px);
			-webkit-backdrop-filter: blur(12px);
			border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		}
		
		.header_sec .inner {
			padding: 12px 0;
		}
		
		.header_sec .btns {
			padding: 10px 22px;
			font-size: 14px;
			font-weight: 600;
		}
		
		.header_sec .btns.white {
			background: transparent;
			border-color: transparent;
		}
		
		.header_sec .btns.white:hover {
			background: rgba(0, 0, 0, 0.05);
			border-color: transparent;
			color: #232426;
		}
		
		.header_sec .btns.primary {
			background: #232426;
			border-color: #232426;
		}
		
		.header_sec .btns.primary:hover {
			background: #ef4444;
			border-color: #ef4444;
		}
		
		.header_sec .logo img {
			max-height: 35px;
			width: auto;
		}
		
		.employees_subtitle {
			font-size: 16px;
			color: #64748b;
			margin: 0 0 25px 0;
			text-align: center;
		}
		
		.employees_carousel_wrapper {
			position: relative;
			padding: 0 60px;
			max-width: 900px;
			margin: 0 auto;
			overflow: hidden;
		}
		
		.employees_carousel {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 20px 0;
			min-height: 450px;
			position: relative;
		}
		
		.carousel_loading {
			color: #94a3b8;
			font-size: 16px;
			text-align: center;
		}
		
		/* Carousel slots */
		.carousel_slot {
			position: absolute;
			display: flex;
			align-items: center;
			justify-content: center;
			top: 50%;
			transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		}
		
		.carousel_slot_left {
			left: 60px;
			width: 180px;
			opacity: 0.5;
			z-index: 1;
			transform: translateY(-50%) scale(0.9);
		}
		
		.carousel_slot_center {
			left: 50%;
			transform: translate(-50%, -50%) scale(1);
			width: 300px;
			opacity: 1;
			z-index: 3;
		}
		
		.carousel_slot_right {
			right: 60px;
			left: auto;
			width: 180px;
			opacity: 0.5;
			z-index: 1;
			transform: translateY(-50%) scale(0.9);
		}
		
		/* Entering positions - start off-screen */
		.carousel_slot_entering_left {
			left: -180px;
			width: 180px;
			opacity: 0;
			z-index: 0;
			transform: translateY(-50%) scale(0.7);
		}
		
		.carousel_slot_entering_right {
			right: -180px;
			left: auto;
			width: 180px;
			opacity: 0;
			z-index: 0;
			transform: translateY(-50%) scale(0.7);
		}
		
		/* Exiting positions - move off-screen */
		.carousel_slot_exiting_left {
			left: -180px;
			width: 180px;
			opacity: 0;
			z-index: 0;
			transform: translateY(-50%) scale(0.7);
		}
		
		.carousel_slot_exiting_right {
			right: -180px;
			left: auto;
			width: 180px;
			opacity: 0;
			z-index: 0;
			transform: translateY(-50%) scale(0.7);
		}
		
		.employee_card {
			background: #fff;
			border-radius: 16px;
			overflow: hidden;
			border: 1px solid #e2e8f0;
			cursor: pointer;
			text-decoration: none;
			display: block;
			width: 100%;
			transition: box-shadow 0.3s ease;
		}
		
		.carousel_slot_center .employee_card {
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
		}
		
		.carousel_slot_center .employee_card:hover {
			box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
		}
		
		.carousel_slot_left .employee_card,
		.carousel_slot_right .employee_card {
			box-shadow: none;
		}
		
		.carousel_slot_left .employee_card:hover,
		.carousel_slot_right .employee_card:hover {
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
		}
		
		.employee_image {
			width: 100%;
			aspect-ratio: 1;
			background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
			position: relative;
		}
		
		.employee_image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		
		/* Play button centered on avatar - only visible on center card */
		.employee_play_btn {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 56px;
			height: 56px;
			border-radius: 50%;
			background: rgba(239, 68, 68, 0.75);
			border: none;
			color: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
			box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
			opacity: 0;
			visibility: hidden;
			pointer-events: none;
		}
		
		.carousel_slot_center .employee_play_btn {
			opacity: 0.85;
			visibility: visible;
			pointer-events: auto;
			animation: subtlePulse 2.5s ease-in-out infinite;
		}
		
		@keyframes subtlePulse {
			0%, 100% {
				transform: translate(-50%, -50%) scale(1);
				box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
			}
			50% {
				transform: translate(-50%, -50%) scale(1.08);
				box-shadow: 0 6px 28px rgba(239, 68, 68, 0.45);
			}
		}
		
		.carousel_slot_center .employee_play_btn:hover {
			background: rgba(37, 99, 235, 0.9);
			opacity: 1;
			animation: none;
			transform: translate(-50%, -50%) scale(1.1);
			box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
		}
		
		.employee_play_btn svg {
			width: 22px;
			height: 22px;
			margin-left: 3px;
		}
		
		.employee_info {
			padding: 16px;
			text-align: center;
		}
		
		.employee_info h3 {
			font-size: 16px;
			font-weight: 600;
			color: #1a1a2e;
			margin: 0 0 4px 0;
		}
		
		.employee_info span {
			font-size: 13px;
			color: #94a3b8;
			display: block;
			margin-bottom: 12px;
		}
		
		/* Integration logos grid */
		.integration_logos {
			display: flex;
			flex-wrap: wrap;
			gap: 4px;
			padding: 0;
			margin: 0;
			justify-content: center;
		}
		
		.integration_logo {
			width: 24px;
			height: 24px;
			border-radius: 5px;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
			padding: 4px;
		}
		
		.integration_logo img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			filter: brightness(0) invert(1);
		}
		
		/* Brand Colors */
		.integration_logo.tiktok { background: #000000; }
		.integration_logo.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
		.integration_logo.facebook { background: #1877f2; }
		.integration_logo.github { background: #181717; }
		.integration_logo.jira { background: #0052cc; }
		.integration_logo.slack { background: #4a154b; }
		.integration_logo.gitlab { background: #fc6d26; }
		.integration_logo.zendesk { background: #03363d; }
		.integration_logo.salesforce { background: #00a1e0; }
		.integration_logo.intercom { background: #6afdef; }
		.integration_logo.intercom img { filter: brightness(0); }
		.integration_logo.hubspot { background: #ff7a59; }
		.integration_logo.pipedrive { background: #1a1a1a; }
		.integration_logo.linkedin { background: #0a66c2; }
		.integration_logo.zoom { background: #2d8cff; }
		.integration_logo.quickbooks { background: #2ca01c; }
		.integration_logo.xero { background: #13b5ea; }
		.integration_logo.stripe { background: #635bff; }
		.integration_logo.paypal { background: #003087; }
		.integration_logo.googleads { background: #4285f4; }
		.integration_logo.meta { background: #0081fb; }
		.integration_logo.mailchimp { background: #ffe01b; }
		.integration_logo.mailchimp img { filter: brightness(0); }
		.integration_logo.analytics { background: #e37400; }
		.integration_logo.semrush { background: #ff642d; }
		.integration_logo.notion { background: #000000; }
		.integration_logo.calendar { background: #4285f4; }
		.integration_logo.tableau { background: #e97627; }
		.integration_logo.powerbi { background: #f2c811; }
		.integration_logo.powerbi img { filter: brightness(0); }
		.integration_logo.postgresql { background: #4169e1; }
		.integration_logo.mongodb { background: #47a248; }
		
		.employee_placeholder {
			width: 50%;
			height: 50%;
			opacity: 0.4;
		}
		
		/* Employees Carousel Arrows */
		.employees_carousel_arrow {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 48px;
			height: 48px;
			border-radius: 50%;
			border: 1px solid #e2e8f0;
			background: #fff;
			color: #374151;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
			box-shadow: 0 2px 8px rgba(0,0,0,0.08);
			z-index: 20;
		}
		
		.employees_carousel_arrow:hover {
			border-color: #ef4444;
			color: #ef4444;
			background: #fff;
			box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
		}
		
		.employees_carousel_arrow:active {
			transform: translateY(-50%) scale(0.95);
		}
		
		.employees_carousel_arrow svg {
			width: 20px;
			height: 20px;
			pointer-events: none;
		}
		
		.employees_carousel_prev {
			left: 0;
		}
		
		.employees_carousel_next {
			right: 0;
		}
		
		/* Employees carousel responsive for tablets */
		@media (max-width: 992px) {
			.carousel_slot_center {
				width: 260px;
			}
			
			.carousel_slot_left {
				left: 40px;
				width: 160px;
			}
			
			.carousel_slot_right {
				right: 40px;
				width: 160px;
			}
			
			.carousel_slot_entering_left,
			.carousel_slot_exiting_left {
				left: -160px;
			}
			
			.carousel_slot_entering_right,
			.carousel_slot_exiting_right {
				right: -160px;
			}
			
			.employees_carousel_wrapper {
				padding: 0 50px;
			}
			
			.employees_carousel {
				min-height: 400px;
			}
		}
		
		/* Employees carousel responsive for mobile */
		@media (max-width: 768px) {
			.hero_sec .detail {
				max-width: 100%;
			}
			
			.hero_sec .detail h1 {
				white-space: normal;
				font-size: 32px;
			}
			
			.hero_search_wrapper {
				margin: 20px 15px 0;
				max-width: 100%;
			}
			
			.hero_search_input {
				padding: 14px 18px;
				font-size: 14px;
			}
			
			.hero_search_btn {
				width: 44px;
				height: 44px;
				min-width: 44px;
				margin: 5px;
			}
			
			.hero_search_btn svg {
				width: 18px;
				height: 18px;
			}
			
			.hero_search_dropdown {
				border-radius: 10px;
				max-height: 240px;
			}
			
			.hero_search_dropdown .search_result_item {
				padding: 8px 12px !important;
				gap: 10px !important;
			}
			
			.hero_search_dropdown .search_result_avatar {
				width: 32px !important;
				height: 32px !important;
				min-width: 32px !important;
				border-radius: 6px !important;
			}
			
			.hero_search_dropdown .search_result_avatar svg {
				width: 14px !important;
				height: 14px !important;
			}
			
			.hero_search_dropdown .search_result_title {
				font-size: 13px !important;
			}
			
			.hero_search_dropdown .search_result_desc {
				font-size: 11px !important;
			}
			
			.hero_search_dropdown .search_result_btn {
				padding: 4px 10px !important;
				font-size: 11px !important;
			}
			
			.carousel_slot_center {
				width: 200px;
			}
			
			.carousel_slot_left {
				left: 20px;
				width: 100px;
			}
			
			.carousel_slot_right {
				right: 20px;
				width: 100px;
			}
			
			.carousel_slot_entering_left,
			.carousel_slot_exiting_left {
				left: -100px;
			}
			
			.carousel_slot_entering_right,
			.carousel_slot_exiting_right {
				right: -100px;
			}
			
			.employees_carousel_wrapper {
				padding: 0 45px;
			}
			
			.employees_carousel {
				min-height: 320px;
			}
			
			.employees_carousel_arrow {
				width: 38px;
				height: 38px;
			}
			
			.employees_carousel_arrow svg {
				width: 16px;
				height: 16px;
			}
			
			.ai_employees_section {
				padding: 10px 0 20px;
				margin: 0;
			}
			
			.employee_info {
				padding: 12px;
			}
			
			.employee_info h3 {
				font-size: 14px;
			}
			
			.employee_info span {
				font-size: 11px;
			}
			
			.integration_logos {
				gap: 3px;
			}
			
			.integration_logo {
				width: 20px;
				height: 20px;
				border-radius: 4px;
				padding: 3px;
			}
			
			.employee_play_btn {
				width: 44px;
				height: 44px;
			}
			
			.employee_play_btn svg {
				width: 18px;
				height: 18px;
				margin-left: 2px;
			}
		}
		
		/* Mobile Hero Devices Slider */
		@media (max-width: 768px) {
			.hero_sec .terminal_info {
				display: flex !important;
				flex-direction: row !important;
				flex-wrap: nowrap !important;
				justify-content: flex-start !important;
				align-items: flex-end !important;
				overflow-x: auto !important;
				overflow-y: hidden !important;
				scroll-snap-type: x mandatory;
				-webkit-overflow-scrolling: touch;
				gap: 20px !important;
				padding: 20px 20px 25px !important;
				margin: 0 -15px !important;
				scrollbar-width: none;
				-ms-overflow-style: none;
			}
			
			.hero_sec .terminal_info::-webkit-scrollbar {
				display: none;
			}
			
			.hero_sec .terminal_info .terminal_block {
				flex: 0 0 auto !important;
				width: auto !important;
				min-width: 220px !important;
				max-width: 280px !important;
				scroll-snap-align: center;
				position: relative !important;
				margin: 0 !important;
			}
			
			.hero_sec .terminal_info .terminal_block figure {
				margin: 0 !important;
				padding: 0 !important;
				position: relative !important;
			}
			
			.hero_sec .terminal_info .terminal_block figure img {
				max-height: 320px !important;
				width: auto !important;
				height: auto !important;
				object-fit: contain !important;
				max-width: 100% !important;
			}
			
			/* Uniform play button size on mobile */
			.hero_sec .terminal_block .device_play_btn {
				width: 32px !important;
				height: 32px !important;
				margin-top: 0 !important;
				opacity: 0.7;
			}
			
			.hero_sec .terminal_block .device_play_btn svg {
				width: 12px !important;
				height: 12px !important;
			}
		}
		
		/* Mobile Scroll Hint */
		.mobile_scroll_hint {
			display: none;
			justify-content: center;
			align-items: center;
			gap: 8px;
			margin-top: 10px;
			color: rgba(0, 0, 0, 0.4);
			font-size: 12px;
			transition: opacity 0.3s ease;
		}
		
		.mobile_scroll_hint svg {
			width: 16px;
			height: 16px;
			animation: swipe-hint 2s ease-in-out infinite;
		}
		
		@keyframes swipe-hint {
			0%, 100% { transform: translateX(0); opacity: 0.4; }
			50% { transform: translateX(5px); opacity: 1; }
		}
		
		@media (max-width: 768px) {
			.mobile_scroll_hint {
				display: flex;
			}
		}
		
		/* Device Play Button Styles */
		.terminal_block {
			position: relative;
		}
		
		.device_play_btn {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 36px;
			height: 36px;
			border-radius: 50%;
			border: 1.5px solid rgba(255, 255, 255, 0.4);
			background: rgba(0, 0, 0, 0.2);
			backdrop-filter: blur(4px);
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 10;
			transition: all 0.3s ease;
			opacity: 0.6;
		}
		
		.device_play_btn svg {
			width: 14px;
			height: 14px;
			color: rgba(255, 255, 255, 0.8);
			margin-left: 2px;
			transition: all 0.3s ease;
		}
		
		.device_play_btn:hover {
			transform: translate(-50%, -50%) scale(1.1);
			background: rgba(239, 68, 68, 0.5);
			border-color: rgba(255, 255, 255, 0.7);
			opacity: 1;
		}
		
		.device_play_btn:hover svg {
			color: #fff;
		}
		
		/* Smaller play buttons for smaller devices */
		.terminal_block:nth-child(2) .device_play_btn,
		.terminal_block:nth-child(4) .device_play_btn,
		.terminal_block:nth-child(5) .device_play_btn,
		.terminal_block:nth-child(6) .device_play_btn {
			width: 28px;
			height: 28px;
		}
		
		.terminal_block:nth-child(2) .device_play_btn svg,
		.terminal_block:nth-child(4) .device_play_btn svg,
		.terminal_block:nth-child(5) .device_play_btn svg,
		.terminal_block:nth-child(6) .device_play_btn svg {
			width: 10px;
			height: 10px;
			margin-left: 1px;
		}
		
		/* Video Modal Styles */
		.video_modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, 0.95);
			z-index: 99999;
			align-items: center;
			justify-content: center;
			opacity: 0;
			transition: opacity 0.3s ease;
		}
		
		.video_modal.active {
			display: flex;
			opacity: 1;
		}
		
		.video_modal_backdrop {
			position: absolute;
			inset: 0;
			cursor: pointer;
		}
		
		.video_modal_container {
			position: relative;
			width: 90%;
			max-width: 1000px;
			background: #000;
			border-radius: 16px;
			overflow: hidden;
			box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
			transform: scale(0.9) translateY(20px);
			transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		}
		
		.video_modal.active .video_modal_container {
			transform: scale(1) translateY(0);
		}
		
		.video_modal_header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 16px 20px;
			background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		}
		
		.video_modal_title {
			display: flex;
			align-items: center;
			gap: 12px;
			color: #fff;
			font-size: 16px;
			font-weight: 600;
			margin: 0;
		}
		
		.video_modal_title_icon {
			width: 36px;
			height: 36px;
			background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
			border-radius: 10px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		
		.video_modal_title_icon svg {
			width: 20px;
			height: 20px;
			color: #fff;
		}
		
		.video_modal_close {
			width: 40px;
			height: 40px;
			border: none;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 10px;
			color: #fff;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}
		
		.video_modal_close:hover {
			background: rgba(255, 255, 255, 0.2);
			transform: rotate(90deg);
		}
		
		.video_modal_close svg {
			width: 20px;
			height: 20px;
		}
		
		.video_modal_content {
			position: relative;
			width: 100%;
			padding-top: 56.25%; /* 16:9 aspect ratio */
			background: #000;
		}
		
		.video_modal_content video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
		
		@media (max-width: 768px) {
			.device_play_btn {
				width: 28px;
				height: 28px;
				opacity: 0.5;
			}
			
			.device_play_btn svg {
				width: 10px;
				height: 10px;
			}
			
			.terminal_block:nth-child(2) .device_play_btn,
			.terminal_block:nth-child(4) .device_play_btn,
			.terminal_block:nth-child(5) .device_play_btn,
			.terminal_block:nth-child(6) .device_play_btn {
				width: 22px;
				height: 22px;
			}
			
			.terminal_block:nth-child(2) .device_play_btn svg,
			.terminal_block:nth-child(4) .device_play_btn svg,
			.terminal_block:nth-child(5) .device_play_btn svg,
			.terminal_block:nth-child(6) .device_play_btn svg {
				width: 8px;
				height: 8px;
			}
			
			.video_modal_container {
				width: 95%;
				border-radius: 12px;
			}
			
			.video_modal_header {
				padding: 12px 16px;
			}
			
			.video_modal_title {
				font-size: 14px;
				gap: 10px;
			}
			
			.video_modal_title_icon {
				width: 30px;
				height: 30px;
				border-radius: 8px;
			}
			
			.video_modal_title_icon svg {
				width: 16px;
				height: 16px;
			}
		}
		
		/* AI Models Section Styles */
		.models_sec { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.models_sec .inner { text-align: center; }
		.models_sec .global_title { margin-bottom: 10px; }
		.models_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 40px; }
		.klono_featured { max-width: 700px; margin: 0 auto 40px; position: relative; }
		.klono_model { display: flex; align-items: center; padding: 24px 30px; background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15); border: 2px solid transparent; background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #ef4444, #8b5cf6); background-origin: border-box; background-clip: padding-box, border-box; transition: all 0.3s ease; text-decoration: none; }
		.klono_model:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(239, 68, 68, 0.25); }
		.klono_icon { width: 60px; height: 60px; flex-shrink: 0; margin-right: 20px; }
		.klono_icon svg { width: 100%; height: 100%; }
		.klono_info { flex: 1; text-align: left; }
		.klono_name { display: block; font-size: 20px; font-weight: 700; margin-bottom: 6px; background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
		.klono_desc { display: block; font-size: 14px; color: #6b7280; line-height: 1.5; }
		.klono_arrow { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); border-radius: 50%; color: #fff; flex-shrink: 0; margin-left: 20px; transition: transform 0.3s ease; }
		.klono_model:hover .klono_arrow { transform: translateX(5px); }
		.models_divider { display: flex; align-items: center; justify-content: center; margin: 40px 0; }
		.models_divider::before, .models_divider::after { content: ''; flex: 1; max-width: 200px; height: 1px; background: linear-gradient(90deg, transparent, #d1d5db, transparent); }
		.models_divider span { padding: 0 20px; font-size: 14px; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
		.models_grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; max-width: 900px; margin: 0 auto; }
		.model_item { display: flex; align-items: center; justify-content: center; padding: 16px 28px; background: #fff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; min-width: 150px; border: 1px solid rgba(0,0,0,0.05); }
		.model_item:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(239, 68, 68, 0.18); border-color: rgba(239, 68, 68, 0.2); }
		.model_item .model_icon { width: 32px; height: 32px; margin-right: 12px; display: flex; align-items: center; justify-content: center; }
		.model_item .model_icon svg { width: 100%; height: 100%; }
		.model_item .model_name { font-weight: 600; font-size: 16px; color: #1f2937; }
		@media (max-width: 768px) { .models_sec { padding: 50px 0; } .klono_model { flex-direction: column; text-align: center; padding: 20px; } .klono_icon { margin-right: 0; margin-bottom: 15px; } .klono_info { text-align: center; margin-bottom: 15px; } .klono_arrow { margin-left: 0; } .models_grid { gap: 15px; } .model_item { padding: 12px 20px; min-width: 130px; } .model_item .model_icon { width: 26px; height: 26px; margin-right: 10px; } }


	/* Case Studies Gallery Styles */
		.case_studies_sec { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.case_studies_sec .inner { text-align: center; }
		.case_studies_sec .global_title { margin-bottom: 10px; }
		.case_studies_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 50px; }
		.gallery_wrapper { display: flex; align-items: center; gap: 20px; max-width: 1100px; margin: 0 auto; }
		.gallery_arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #e5e7eb; background: #fff; color: #374151; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; }
		.gallery_arrow:hover { border-color: #ef4444; color: #ef4444; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2); }
		.gallery_container { flex: 1; overflow: hidden; position: relative; }
		.gallery_track { display: flex; gap: 20px; transition: transform 0.5s ease; will-change: transform; }
		.gallery_item { flex-shrink: 0; width: 320px; height: 220px; border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; }
		.gallery_item:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
		.gallery_item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
		.gallery_item:hover img { transform: scale(1.1); }
		.gallery_overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; color: #fff; }
		.gallery_item:hover .gallery_overlay { opacity: 1; }
		.gallery_video .gallery_play { opacity: 1; background: transparent; }
		.gallery_video:hover .gallery_play svg circle { fill: rgba(255,255,255,1); }
		.gallery_video .gallery_play svg { transition: transform 0.3s ease; }
		.gallery_video:hover .gallery_play svg { transform: scale(1.1); }
		.lightbox_modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
		.lightbox_modal.active { display: flex; }
		.lightbox_close { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; }
		.lightbox_close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
		.lightbox_content { max-width: 90vw; max-height: 85vh; display: flex; align-items: center; justify-content: center; }
		.lightbox_content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
		.lightbox_nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
		.lightbox_nav:hover { background: rgba(255,255,255,0.2); }
		.lightbox_prev { left: 30px; }
		.lightbox_next { right: 30px; }
		.lightbox_counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 16px; font-weight: 500; background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 20px; }
		@media (max-width: 768px) { .case_studies_sec { padding: 50px 0; } .gallery_wrapper { gap: 10px; } .gallery_arrow { width: 40px; height: 40px; } .gallery_track { gap: 15px; } .gallery_item { width: 260px; height: 180px; } .lightbox_nav { width: 45px; height: 45px; } .lightbox_prev { left: 10px; } .lightbox_next { right: 10px; } }

/* Integrations Carousel Styles */
		.integrations_sec { padding: 80px 0; background: #fff; overflow: hidden; }
		.integrations_sec .inner { text-align: center; }
		.integrations_sec .global_title { margin-bottom: 10px; }
		.integrations_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 50px; }
		.carousel_wrapper { display: flex; align-items: center; gap: 20px; max-width: 1100px; margin: 0 auto; }
		.carousel_arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #e5e7eb; background: #fff; color: #374151; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; }
		.carousel_arrow:hover { border-color: #ef4444; color: #ef4444; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2); }
		.carousel_container { flex: 1; overflow: hidden; position: relative; }
		.carousel_track { display: flex; gap: 30px; transition: transform 0.5s ease; will-change: transform; }
		.integration_item { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px; min-width: 120px; background: #f9fafb; border-radius: 12px; transition: all 0.3s ease; }
		.integration_item:hover { background: #f3f4f6; transform: translateY(-3px); }
		.integration_item svg { width: 48px; height: 48px; }
		.integration_item span { font-size: 14px; font-weight: 500; color: #374151; }
		.integrations_link { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; padding: 14px 28px; background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); color: #fff; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; }
		.integrations_link:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35); }
		@media (max-width: 768px) { .integrations_sec { padding: 50px 0; } .carousel_wrapper { gap: 10px; } .carousel_arrow { width: 40px; height: 40px; } .carousel_track { gap: 15px; } .integration_item { min-width: 100px; padding: 15px; } .integration_item svg { width: 36px; height: 36px; } }



/* Documentation Banner Styles */
		.docs_banner_sec { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.docs_banner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 50px 60px; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 24px; position: relative; overflow: hidden; }
		.docs_banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%); pointer-events: none; }
		.docs_content { display: flex; align-items: center; gap: 25px; position: relative; z-index: 1; }
		.docs_icon { width: 80px; height: 80px; background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
		.docs_text h3 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
		.docs_text p { font-size: 16px; color: #94a3b8; margin: 0; max-width: 500px; line-height: 1.6; }
		.docs_btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: #fff; color: #1e293b; text-decoration: none; border-radius: 12px; font-weight: 600; font-size: 16px; transition: all 0.3s ease; flex-shrink: 0; position: relative; z-index: 1; }
		.docs_btn:hover { background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3); }
		@media (max-width: 992px) { .docs_banner { flex-direction: column; text-align: center; padding: 40px 30px; } .docs_content { flex-direction: column; } }
		
		/* Language Switcher Styles */
		.lang_switcher { display: flex; align-items: center; gap: 8px; }
		.lang_link { color: #94a3b8; text-decoration: none; font-weight: 500; font-size: 14px; padding: 6px 12px; border-radius: 6px; transition: all 0.3s ease; }
		.lang_link:hover { color: #fff; background: rgba(255,255,255,0.1); }
		.lang_link.active { color: #fff; background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); }
		.lang_divider { color: #475569; font-size: 14px; }


	/* Video Sections Shared Styles */
		.video_hero_sec {
			position: relative;
			width: 100%;
			height: 85vh;
			min-height: 600px;
			overflow: hidden;
			display: flex;
			align-items: flex-end;
			justify-content: center;
		}

		.video_hero_sec video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			z-index: 1;
		}

		.video_hero_sec::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 250px;
			background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
			z-index: 2;
			pointer-events: none;
		}

		.video_hero_sec .video_title {
			position: relative;
			z-index: 3;
			max-width: 900px;
			padding: 0 30px 60px;
			text-align: center;
			color: #fff;
			font-size: 28px;
			font-weight: 600;
			line-height: 1.5;
			text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
		}

		/* Video Sound Controls - Center Unmute Button */
		.video_unmute_center {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			z-index: 4;
			width: 100px;
			height: 100px;
			border-radius: 50%;
			border: 3px solid rgba(255, 255, 255, 0.8);
			background: rgba(0, 0, 0, 0.5);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 6px;
			transition: all 0.3s ease;
		}

		.video_unmute_center:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: translate(-50%, -50%) scale(1.1);
		}

		.video_unmute_center svg {
			width: 36px;
			height: 36px;
		}

		.video_unmute_center span {
			font-size: 11px;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 1px;
		}

		/* Video Sound Controls - Corner Mute Button */
		.video_mute_corner {
			position: absolute;
			bottom: 30px;
			right: 30px;
			z-index: 4;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			border: 2px solid rgba(255, 255, 255, 0.5);
			background: rgba(0, 0, 0, 0.4);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: none;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video_mute_corner:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: scale(1.1);
		}

		.video_mute_corner svg {
			width: 24px;
			height: 24px;
		}

		/* Show/hide states */
		.video_hero_sec.playing .video_unmute_center {
			display: none;
		}

		.video_hero_sec.playing .video_mute_corner {
			display: flex;
		}

		@media (max-width: 768px) {
			.video_hero_sec {
				height: 50vh;
				min-height: 300px;
				max-height: 350px;
			}
			
			.video_hero_sec .video_title {
				font-size: 14px;
				padding: 0 15px 50px;
				line-height: 1.4;
			}
			
			.video_hero_sec::after {
				height: 150px;
			}
			
			.video_unmute_center {
				width: 60px;
				height: 60px;
			}
			
			.video_unmute_center svg {
				width: 22px;
				height: 22px;
			}
			
			.video_unmute_center span {
				font-size: 8px;
			}
			
			.video_mute_corner {
				bottom: 15px;
				right: 15px;
				width: 36px;
				height: 36px;
			}
			
			.video_mute_corner svg {
				width: 16px;
				height: 16px;
			}
		}

		/* Clickable video when unmuted */
		.video_hero_sec.playing video {
			cursor: pointer;
		}

		.video_hero_sec:not(.playing) video {
			cursor: default;
		}

		/* Restart button */
		.video_restart_btn {
			position: absolute;
			bottom: 30px;
			right: 90px;
			z-index: 4;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			border: 2px solid rgba(255, 255, 255, 0.5);
			background: rgba(0, 0, 0, 0.4);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: none;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video_restart_btn:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: scale(1.1);
		}

		.video_restart_btn svg {
			width: 22px;
			height: 22px;
		}

		.video_hero_sec.playing .video_restart_btn {
			display: flex;
		}

		@media (max-width: 768px) {
			.video_restart_btn {
				bottom: 15px;
				right: 58px;
				width: 36px;
				height: 36px;
			}
			
			.video_restart_btn svg {
				width: 14px;
				height: 14px;
			}
			
			/* Reduce spacing before video sections on mobile */
			.video_hero_sec {
				margin-top: -20px;
			}
			
			h2.global_title.text-center {
				font-size: 20px;
				margin-bottom: 10px;
			}
		}
		
		/* FORCE Mobile Horizontal Slider - Final Override */
		@media screen and (max-width: 768px) {
			section.hero_sec .terminal_info {
				display: flex !important;
				flex-direction: row !important;
				flex-wrap: nowrap !important;
				overflow-x: scroll !important;
				overflow-y: hidden !important;
				scroll-snap-type: x mandatory !important;
				-webkit-overflow-scrolling: touch !important;
				gap: 15px !important;
				padding: 15px 20px 20px !important;
				margin-left: -15px !important;
				margin-right: -15px !important;
				width: calc(100% + 30px) !important;
				scrollbar-width: none !important;
			}
			
			section.hero_sec .terminal_info::-webkit-scrollbar {
				display: none !important;
				width: 0 !important;
				height: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block {
				flex: 0 0 auto !important;
				width: 75vw !important;
				max-width: 280px !important;
				min-width: 200px !important;
				scroll-snap-align: center !important;
				margin: 0 !important;
				padding: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block > figure {
				width: 100% !important;
				display: flex !important;
				justify-content: center !important;
				align-items: flex-end !important;
				margin: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block > figure > img {
				max-height: 300px !important;
				width: auto !important;
				height: auto !important;
				object-fit: contain !important;
			}
		}

/* Slim Top Alert with Countdown */
.top_alert_slim {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 8px 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.top_alert_slim_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top_alert_slim_text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.top_alert_slim_text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.top_alert_slim_text a:hover {
    opacity: 0.85;
}

/* Slim countdown pill */
.countdown_slim {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.countdown_slim_separator {
    opacity: 0.7;
}

/* Email Signup Modal Styles */
.signup_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup_modal.active {
    display: flex;
    opacity: 1;
}

.signup_modal_backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.signup_modal_container {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 100px rgba(239, 68, 68, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signup_modal.active .signup_modal_container {
    transform: scale(1) translateY(0);
}

.signup_modal_header {
    padding: 35px 30px 0;
    text-align: center;
}

.signup_modal_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: bounce-icon 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.signup_modal_title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.signup_modal_subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 5px;
}

.signup_modal_body {
    padding: 25px 30px 35px;
}

.signup_form_group {
    margin-bottom: 20px;
}

.signup_form_group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.signup_form_group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #fff;
}

.signup_form_group input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.signup_form_group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.signup_submit_btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.signup_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.signup_submit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.signup_submit_btn svg {
    width: 20px;
    height: 20px;
}

.signup_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.signup_modal_close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.signup_modal_close svg {
    width: 18px;
    height: 18px;
}

.signup_success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.signup_success.show {
    display: block;
}

.signup_success_icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.signup_success_icon svg {
    width: 45px;
    height: 45px;
    color: #fff;
}

.signup_success h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.signup_success p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.signup_form.hidden {
    display: none;
}

.signup_note {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 18px;
}

.signup_note a {
    color: #ef4444;
    text-decoration: none;
}

.signup_note a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .top_alert_slim {
        padding: 6px 15px;
    }
    
    .top_alert_slim_content {
        gap: 8px;
    }
    
    .top_alert_slim_text {
        font-size: 11px;
    }
    
    .countdown_slim {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .signup_modal_container {
        width: 95%;
        border-radius: 20px;
    }
    
    .signup_modal_header {
        padding: 30px 20px 0;
    }
    
    .signup_modal_body {
        padding: 20px;
    }
    
    .signup_modal_icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .signup_modal_title {
        font-size: 24px;
    }
    
    .signup_modal_subtitle {
        font-size: 14px;
    }
}

/* Updated Integration Brand Box Styles */
.integration_brand_box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.integration_brand_box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.integration_brand_icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration_brand_icon svg {
    width: 28px;
    height: 28px;
}

.integration_brand_name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .integration_brand_box {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .integration_brand_icon {
        width: 24px;
        height: 24px;
    }
    
    .integration_brand_icon svg {
        width: 20px;
        height: 20px;
    }
    
    .integration_brand_name {
        font-size: 11px;
    }
}
</style>
<!-- 
===========================================
INTEGRATIONS SECTION WITH TOOLTIPS - PHP IMPLEMENTATION
===========================================
1. Save the integrations.json file in your /data/ folder
2. Replace your existing integrations_banner_section with this code
3. Make sure your page is a .php file
===========================================
-->

<!-- ADD THIS CSS inside your <style> tags in the <head> section -->
<style>
/* ========== INTEGRATIONS WITH TOOLTIPS ========== */
.integrations_banner_section {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.integrations_banner_title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 50px 0;
    line-height: 1.3;
}

.integrations_banner_title span {
    color: #ef4444;
}

.integrations_carousel_wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.integrations_carousel {
    overflow: hidden;
    position: relative;
}

.integrations_page {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.integrations_page.active {
    display: block;
    opacity: 1;
}

.integrations_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Integration Brand Box with Tooltip */
.integration_brand_box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.integration_brand_box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.integration_brand_icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration_brand_icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.integration_brand_name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tooltip Styles */
.integration_tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(239, 68, 68, 0.1);
}

/* Arrow */
.integration_tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #16162a;
}

.integration_brand_box:hover .integration_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Tooltip positioning for edge items */
.integrations_grid > .integration_brand_box:nth-child(4n) .integration_tooltip,
.integrations_grid > .integration_brand_box:nth-child(4n-3) .integration_tooltip {
    /* Adjust for edge items if needed */
}

.integration_tooltip_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.integration_tooltip_icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration_tooltip_icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.integration_tooltip_title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
}

.integration_tooltip_desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.integration_tooltip_features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.integration_tooltip_features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.integration_tooltip_features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.integration_tooltip_features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Navigation Arrows */
.integrations_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.integrations_arrow:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.integrations_arrow svg {
    width: 22px;
    height: 22px;
}

.integrations_arrow_prev {
    left: 0;
}

.integrations_arrow_next {
    right: 0;
}

/* Dots */
.integrations_dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.integrations_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.integrations_dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.integrations_dot.active {
    background: #ef4444;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .integrations_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .integrations_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration_tooltip {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .integrations_banner_section {
        padding: 50px 20px;
    }
    
    .integrations_banner_title {
        font-size: 22px;
        margin-bottom: 35px;
    }
    
    .integrations_carousel_wrapper {
        padding: 0 45px;
    }
    
    .integrations_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .integration_brand_box {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .integration_brand_icon {
        width: 24px;
        height: 24px;
    }
    
    .integration_brand_icon svg {
        width: 20px;
        height: 20px;
    }
    
    .integration_brand_name {
        font-size: 11px;
    }
    
    .integrations_arrow {
        width: 36px;
        height: 36px;
    }
    
    .integrations_arrow svg {
        width: 16px;
        height: 16px;
    }
    
    /* Hide tooltip on mobile, show on tap instead */
    .integration_tooltip {
        display: none;
    }
}
	/* 
===========================================
TOOLTIP Z-INDEX FIX - ADD THIS TO YOUR CSS
===========================================
The problem: Parent containers have overflow:hidden 
which clips the tooltip.
===========================================
*/

/* Remove overflow:hidden from all parent containers */
.integrations_banner_section,
.integrations_carousel_wrapper,
.integrations_carousel,
.integrations_page,
.integrations_page.active,
.integrations_grid {
    overflow: visible !important;
}

/* Bring hovered item to front */
.integration_brand_box {
    position: relative;
    z-index: 1;
}

.integration_brand_box:hover {
    z-index: 100;
}

/* Tooltip needs very high z-index */
.integration_tooltip {
    z-index: 9999 !important;
}

/* Add padding to section top for first row tooltips */
.integrations_banner_section {
    padding-top: 120px;
}
	/* Pulsing dot on first card only */
.integrations_grid > .integration_brand_box:first-child::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseHint 2s ease-in-out infinite;
    z-index: 10;
}

/* Outer ring pulse effect */
.integrations_grid > .integration_brand_box:first-child::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
    z-index: 9;
}

@keyframes pulseHint {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Hide on hover */
.integrations_grid > .integration_brand_box:first-child:hover::after,
.integrations_grid > .integration_brand_box:first-child:hover::before {
    opacity: 0;
    animation: none;
}
/* LEFT column - force left alignment */
.integrations_grid > .integration_brand_box:nth-child(4n+1) .integration_tooltip {
    left: 0 !important;
    right: auto !important;
    transform: translateX(0) translateY(10px) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+1):hover .integration_tooltip {
    transform: translateX(0) translateY(0) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+1) .integration_tooltip::after {
    left: 30px !important;
    transform: translateX(0) !important;
}
	/* 
===========================================
TOOLTIP POSITIONING FIX
===========================================
Replace your existing tooltip positioning CSS with this
===========================================
*/

/* Base tooltip - centered by default */
.integration_tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 80px rgba(239, 68, 68, 0.15);
    text-align: left;
}

/* Arrow - centered by default */
.integration_tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #16162a;
}

/* Show on hover - centered */
.integration_brand_box:hover .integration_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ===========================================
   LEFT COLUMN (1st, 5th, 9th, 13th items) 
   - Align tooltip to LEFT edge
   =========================================== */
.integrations_grid > .integration_brand_box:nth-child(4n+1) .integration_tooltip {
    left: 0 !important;
    right: auto !important;
    transform: translateX(0) translateY(10px) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+1):hover .integration_tooltip {
    transform: translateX(0) translateY(0) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+1) .integration_tooltip::after {
    left: 30px !important;
    right: auto !important;
    transform: translateX(0) !important;
}

/* ===========================================
   RIGHT COLUMN (4th, 8th, 12th, 16th items)
   - Align tooltip to RIGHT edge
   =========================================== */
.integrations_grid > .integration_brand_box:nth-child(4n) .integration_tooltip {
    left: auto !important;
    right: 0 !important;
    transform: translateX(0) translateY(10px) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n):hover .integration_tooltip {
    transform: translateX(0) translateY(0) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n) .integration_tooltip::after {
    left: auto !important;
    right: 30px !important;
    transform: translateX(0) !important;
}

/* ===========================================
   MIDDLE COLUMNS (2nd, 3rd, 6th, 7th, etc.)
   - Keep centered (default)
   =========================================== */
.integrations_grid > .integration_brand_box:nth-child(4n+2) .integration_tooltip,
.integrations_grid > .integration_brand_box:nth-child(4n+3) .integration_tooltip {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+2):hover .integration_tooltip,
.integrations_grid > .integration_brand_box:nth-child(4n+3):hover .integration_tooltip {
    transform: translateX(-50%) translateY(0) !important;
}

.integrations_grid > .integration_brand_box:nth-child(4n+2) .integration_tooltip::after,
.integrations_grid > .integration_brand_box:nth-child(4n+3) .integration_tooltip::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* ===========================================
   RESPONSIVE - 3 columns (tablet)
   =========================================== */
@media (max-width: 1200px) {
    /* Left column */
    .integrations_grid > .integration_brand_box:nth-child(3n+1) .integration_tooltip {
        left: 0 !important;
        right: auto !important;
        transform: translateX(0) translateY(10px) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n+1):hover .integration_tooltip {
        transform: translateX(0) translateY(0) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n+1) .integration_tooltip::after {
        left: 30px !important;
        right: auto !important;
    }
    
    /* Right column */
    .integrations_grid > .integration_brand_box:nth-child(3n) .integration_tooltip {
        left: auto !important;
        right: 0 !important;
        transform: translateX(0) translateY(10px) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n):hover .integration_tooltip {
        transform: translateX(0) translateY(0) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n) .integration_tooltip::after {
        left: auto !important;
        right: 30px !important;
    }
    
    /* Middle column - centered */
    .integrations_grid > .integration_brand_box:nth-child(3n+2) .integration_tooltip {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(10px) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n+2):hover .integration_tooltip {
        transform: translateX(-50%) translateY(0) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(3n+2) .integration_tooltip::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* ===========================================
   RESPONSIVE - 2 columns (mobile)
   =========================================== */
@media (max-width: 992px) {
    /* Left column (odd items) */
    .integrations_grid > .integration_brand_box:nth-child(odd) .integration_tooltip {
        left: 0 !important;
        right: auto !important;
        transform: translateX(0) translateY(10px) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(odd):hover .integration_tooltip {
        transform: translateX(0) translateY(0) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(odd) .integration_tooltip::after {
        left: 30px !important;
        right: auto !important;
    }
    
    /* Right column (even items) */
    .integrations_grid > .integration_brand_box:nth-child(even) .integration_tooltip {
        left: auto !important;
        right: 0 !important;
        transform: translateX(0) translateY(10px) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(even):hover .integration_tooltip {
        transform: translateX(0) translateY(0) !important;
    }
    
    .integrations_grid > .integration_brand_box:nth-child(even) .integration_tooltip::after {
        left: auto !important;
        right: 30px !important;
    }
}
/* ========== EMPLI STATEMENT SECTION ========== */
.empli_statement_section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.empli_statement_section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 60%);
    animation: empliFloat1 12s ease-in-out infinite;
    pointer-events: none;
}

.empli_statement_section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    animation: empliFloat2 14s ease-in-out infinite;
    pointer-events: none;
}

@keyframes empliFloat1 {
    0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
    50% { transform: translateY(-50%) translateX(30px) scale(1.1); }
}

@keyframes empliFloat2 {
    0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
    50% { transform: translateY(-50%) translateX(-30px) scale(1.1); }
}

/* Horizontal glow line */
.empli_glow_line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(239, 68, 68, 0.3) 20%, 
        rgba(249, 115, 22, 0.4) 50%, 
        rgba(139, 92, 246, 0.3) 80%, 
        transparent 100%);
    opacity: 0.5;
    z-index: 1;
}

/* Connection nodes decoration */
.empli_nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.empli_node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    animation: nodePulse 3s ease-in-out infinite;
}

.empli_node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.empli_node:nth-child(2) { top: 70%; left: 15%; animation-delay: 0.5s; background: rgba(249, 115, 22, 0.4); box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
.empli_node:nth-child(3) { top: 30%; right: 12%; animation-delay: 1s; background: rgba(139, 92, 246, 0.4); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.empli_node:nth-child(4) { top: 75%; right: 18%; animation-delay: 1.5s; }
.empli_node:nth-child(5) { top: 50%; left: 5%; animation-delay: 2s; background: rgba(139, 92, 246, 0.4); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.empli_node:nth-child(6) { top: 45%; right: 8%; animation-delay: 2.5s; background: rgba(249, 115, 22, 0.4); box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.8); opacity: 0.8; }
}

/* Connection lines between nodes */
.empli_connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.2), rgba(139, 92, 246, 0.2));
    transform-origin: left center;
    animation: connectionFade 4s ease-in-out infinite;
}

.empli_connection:nth-child(7) { top: 25%; left: 12%; width: 100px; transform: rotate(20deg); }
.empli_connection:nth-child(8) { top: 65%; right: 15%; width: 80px; transform: rotate(-15deg); animation-delay: 1s; }
.empli_connection:nth-child(9) { top: 50%; left: 8%; width: 120px; transform: rotate(-5deg); animation-delay: 2s; }

@keyframes connectionFade {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.empli_statement_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

/* Icon cluster */
.empli_icon_cluster {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.empli_icon_item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.empli_icon_item:nth-child(2) {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.empli_icon_item svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    stroke-width: 1.5;
}

.empli_icon_item:nth-child(2) svg {
    width: 28px;
    height: 28px;
    stroke: #ef4444;
}

.empli_statement_title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.02em;
}

.empli_statement_title .brand {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empli_statement_title .highlight {
    background: linear-gradient(135deg, #f97316 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: empliGradient 4s ease-in-out infinite;
}

@keyframes empliGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Stats row */
.empli_stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.empli_stat {
    text-align: center;
}

.empli_stat_value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.empli_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .empli_statement_section {
        padding: 80px 0;
    }
    
    .empli_statement_title {
        font-size: 36px;
    }

    .empli_stats {
        gap: 40px;
    }

    .empli_stat_value {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .empli_statement_section {
        padding: 60px 0;
    }
    
    .empli_statement_title {
        font-size: 26px;
    }

    .empli_icon_cluster {
        gap: 12px;
        margin-bottom: 24px;
    }

    .empli_icon_item {
        width: 40px;
        height: 40px;
    }

    .empli_icon_item:nth-child(2) {
        width: 48px;
        height: 48px;
    }

    .empli_icon_item svg {
        width: 20px;
        height: 20px;
    }

    .empli_icon_item:nth-child(2) svg {
        width: 24px;
        height: 24px;
    }

    .empli_stats {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
        padding-top: 32px;
    }

    .empli_stat_value {
        font-size: 28px;
    }

    .empli_node,
    .empli_connection {
        display: none;
    }
}
/* ========== STATEMENT SECTION ========== */
.statement_section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.statement_section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
    animation: statementFloat1 15s ease-in-out infinite;
    pointer-events: none;
}

.statement_section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    animation: statementFloat2 18s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statementFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes statementFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.05); }
    66% { transform: translate(30px, -50px) scale(1.1); }
}

/* Grid lines decoration */
.statement_grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glowing line accents */
.statement_line_top,
.statement_line_bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 300px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), rgba(139, 92, 246, 0.5), transparent);
}

.statement_line_top {
    top: 40px;
    animation: statementLineGlow 3s ease-in-out infinite;
}

.statement_line_bottom {
    bottom: 40px;
    animation: statementLineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes statementLineGlow {
    0%, 100% { opacity: 0.3; width: 200px; }
    50% { opacity: 1; width: 400px; }
}

.statement_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge above text */
.statement_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.statement_badge svg {
    width: 18px;
    height: 18px;
    stroke: #ef4444;
    fill: none;
    stroke-width: 2;
}

.statement_badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.statement_title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.statement_title .highlight {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: statementGradient 5s ease-in-out infinite;
}

@keyframes statementGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.statement_subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin-top: 24px;
    line-height: 1.6;
}

/* Decorative dots */
.statement_dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.statement_dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.5);
    animation: statementDotPulse 2s ease-in-out infinite;
}

.statement_dots span:nth-child(2) {
    animation-delay: 0.3s;
    background: rgba(249, 115, 22, 0.5);
}

.statement_dots span:nth-child(3) {
    animation-delay: 0.6s;
    background: rgba(139, 92, 246, 0.5);
}

@keyframes statementDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .statement_section {
        padding: 100px 0;
    }
    
    .statement_title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .statement_section {
        padding: 80px 0;
    }
    
    .statement_title {
        font-size: 28px;
    }
    
    .statement_subtitle {
        font-size: 16px;
    }
    
    .statement_badge {
        padding: 8px 16px;
    }
    
    .statement_badge span {
        font-size: 11px;
    }

    .statement_line_top,
    .statement_line_bottom {
        display: none;
    }
}
@media screen and (max-width: 768px) {
	/* Slider container needs relative positioning for arrows */
	.hero_sec .container {
		position: relative !important;
	}
	
	.hero_sec .container .terminal_info,
	section.hero_sec .terminal_info,
	.terminal_info {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scroll-behavior: smooth !important;
		gap: 15px !important;
		padding: 15px calc(50vw - 130px) 20px !important;
		margin-left: -15px !important;
		margin-right: -15px !important;
		width: calc(100% + 30px) !important;
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
		align-items: flex-end !important;
		justify-content: flex-start !important;
	}
	
	.hero_sec .terminal_info::-webkit-scrollbar,
	.terminal_info::-webkit-scrollbar {
		display: none !important;
		width: 0 !important;
		height: 0 !important;
	}
	
	.hero_sec .terminal_info .terminal_block,
	.terminal_info .terminal_block,
	.terminal_block {
		flex: 0 0 auto !important;
		width: 260px !important;
		max-width: 260px !important;
		min-width: 260px !important;
		scroll-snap-align: center !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.terminal_block figure,
	.terminal_block figure.hero1,
	.terminal_block figure.hero2,
	.terminal_block figure.hero3,
	.terminal_block figure.hero4,
	.terminal_block figure.hero5 {
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
		align-items: flex-end !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.terminal_block figure img {
		max-height: 280px !important;
		width: auto !important;
		height: auto !important;
		object-fit: contain !important;
		max-width: 100% !important;
	}
	
	/* Mobile Slider Navigation Arrows - Left and Right sides */
	.mobile_slider_arrow {
		position: absolute !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: none;
		background: rgba(255, 255, 255, 0.9);
		color: #374151;
		display: flex !important;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s ease;
		box-shadow: 0 2px 10px rgba(0,0,0,0.15);
		z-index: 100;
	}
	
	.mobile_slider_arrow:hover,
	.mobile_slider_arrow:active {
		background: #fff;
		color: #ef4444;
		box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
	}
	
	.mobile_slider_arrow svg {
		width: 20px;
		height: 20px;
	}
	
	.mobile_slider_prev {
		left: 5px !important;
	}
	
	.mobile_slider_next {
		right: 5px !important;
	}
	
	/* ========== SERVE SECTION MOBILE SLIDER ========== */
	.serve_sec .inner {
		position: relative !important;
	}
	
	.serve_sec .serve_info {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scroll-behavior: smooth !important;
		gap: 20px !important;
		padding: 20px 15vw !important;
		margin-left: -15px !important;
		margin-right: -15px !important;
		width: calc(100% + 30px) !important;
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
	}
	
	.serve_sec .serve_info::-webkit-scrollbar {
		display: none !important;
	}
	
	.serve_sec .serve_info .serve_block {
		flex: 0 0 auto !important;
		width: 70vw !important;
		min-width: 70vw !important;
		max-width: 70vw !important;
		scroll-snap-align: center !important;
		margin: 0 !important;
		padding: 25px 20px !important;
		background: rgba(255,255,255,0.1) !important;
		border-radius: 16px !important;
	}
	
	.serve_sec .serve_info .serve_block i {
		margin-bottom: 15px !important;
	}
	
	.serve_sec .serve_info .serve_block i img {
		width: 70px !important;
		height: 70px !important;
	}
	
	.serve_sec .serve_info .serve_block h3 {
		font-size: 24px !important;
	}
	
	/* Serve section arrows - white on dark background */
	.serve_slider_arrow {
		position: absolute !important;
		top: 55% !important;
		transform: translateY(-50%) !important;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: 2px solid rgba(255, 255, 255, 0.4);
		background: rgba(255, 255, 255, 0.15);
		color: #fff;
		display: flex !important;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s ease;
		z-index: 100;
	}
	
	.serve_slider_arrow:hover,
	.serve_slider_arrow:active {
		background: rgba(255, 255, 255, 0.25);
		border-color: rgba(255, 255, 255, 0.6);
	}
	
	.serve_slider_arrow svg {
		width: 20px;
		height: 20px;
	}
	
	.serve_slider_prev {
		left: 8px !important;
	}
	
	.serve_slider_next {
		right: 8px !important;
	}
}

/* Hide mobile nav on desktop */
@media screen and (min-width: 769px) {
	.mobile_slider_arrow,
	.serve_slider_arrow {
		display: none !important;
	}
}
/* ========== FEATURES GRID SECTION ========== */
.features_grid_section {
    background: #0a0a0a;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.features_grid_section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.features_grid_section .section_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.features_grid_section .section_title {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.features_grid_section .section_title span {
    background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature_card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), rgba(139, 92, 246, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature_card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(239, 68, 68, 0.08);
}

.feature_card:hover::before {
    opacity: 1;
}

.feature_icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    transition: all 0.35s ease;
}

.feature_card:hover .feature_icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.feature_icon svg {
    width: 32px;
    height: 32px;
    stroke: #ef4444;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.35s ease;
}

.feature_card:hover .feature_icon svg {
    stroke: #f87171;
}

.feature_title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.feature_desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .features_grid_section {
        padding: 60px 0 80px;
    }
    
    .features_grid_section .section_title {
        font-size: 30px;
    }
    
    .features_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .features_grid_section {
        padding: 50px 0 70px;
    }
    
    .features_grid_section .section_header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .features_grid_section .section_title {
        font-size: 24px;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .feature_card {
        padding: 28px 24px;
    }
    
    .feature_icon {
        width: 64px;
        height: 64px;
    }
    
    .feature_icon svg {
        width: 28px;
        height: 28px;
    }
}