/* ============================================
   MAIN PAGE STYLES
   ============================================ */

/* Note: Common styles (variables.css, base.css, components.css) 
   are loaded separately in HTML for better performance */

		/* ============================================
		   HERO SECTION
		   ============================================ */
		.hero {
			padding: 160px 0 80px;
			background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
			position: relative;
			overflow: hidden;
			height: 800px;
			margin-top: 0 !important;
			margin-bottom: 0 !important;
		}

		.hero::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			width: 1920px;
			height: 800px;
			/* WebP with PNG fallback */
			background-image: 
				url('../img/hero_desktop.webp'),
				url('../img/hero_desktop.png');
			background-size: auto 100%;
			background-position: right center;
			background-repeat: no-repeat;
			z-index: 0;
			opacity: 1;
		}
		
		/* Fallback for browsers that don't support WebP */
		@supports not (background-image: url('../img/hero_desktop.webp')) {
			.hero::before {
				background-image: url('../img/hero_desktop.png');
			}
		}

		@media (max-width: 1920px) {
			.hero::before {
				width: 100%;
				background-position: right;
			}
		}


		.hero-content {
			position: relative;
			z-index: 2;
			max-width: 600px;
		}

		.hero h1 {
			font-size: 48px;
			font-weight: 800;
			line-height: 1.2;
			margin-bottom: 24px;
			color: var(--dark);
		}

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

		.hero p {
			font-size: 18px;
			color: var(--gray);
			margin-bottom: 32px;
			max-width: 500px;
			line-height: 1.6;
		}

		/* ============================================
		   HERO SECTION - RESPONSIVE FONT SIZES
		   Configure font sizes for each screen type
		   ============================================ */
		
		/* Mobile devices (up to 576px) */
		@media (max-width: 576px) {
			.hero h1 {
				font-size: 62px; /* Configure font size for mobile devices */
			}
			
			.hero p {
				font-size: 30px; /* Configure font size for mobile devices */
			}
		}
		
		/* Tablets (from 577px to 992px) */
		@media (min-width: 577px) and (max-width: 992px) {
			.hero-content {
				max-width: 850px; /* Increased width for tablets to prevent text wrapping */
			}
			
			.hero h1 {
				font-size: 80px; /* Configure font size for tablets */
			}
			
			.hero p {
				font-size: 40px; /* Configure font size for tablets */
				max-width: 850px; /* Increased width for tablets to prevent text wrapping */
			}
		}
		
		/* Desktop (from 993px and above) */
		@media (min-width: 993px) {
			.hero-content {
				max-width: 900px; /* Increased width for desktop to prevent text wrapping */
			}
			
			.hero h1 {
				font-size: 50px; /* Configure font size for desktop */
			}
			
			.hero p {
				font-size: 22px; /* Configure font size for desktop */
				max-width: 800px; /* Increased width for desktop to prevent text wrapping */
			}
		}

		.btn {
			display: inline-block;
			padding: 16px 36px;
			background: var(--primary);
			color: white;
			border-radius: 8px;
			text-decoration: none;
			transition: var(--transition);
			border: none;
			cursor: pointer;
			font-size: 16px;
			box-shadow: 0 4px 15px rgba(114, 108, 230, 0.25);
			position: relative;
			overflow: hidden;
			font-weight: 700;
		}

		.btn:hover {
			background: var(--primary-dark);
			transform: translateY(-3px);
			box-shadow: 0 10px 25px rgba(114, 108, 230, 0.3);
		}

		.btn-magnetic::before {
			content: '';
			position: absolute;
			top: 50%;
			left: 50%;
			width: 0;
			height: 0;
			background: rgba(255, 255, 255, 0.2);
			border-radius: 50%;
			transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
			transform: translate(-50%, -50%);
		}

		.btn-magnetic:hover::before {
			width: 300px;
			height: 300px;
		}

		.btn-secondary {
			background: transparent;
			color: var(--primary);
			border: 2px solid var(--primary);
			margin-left: 15px;
		}

		.btn-secondary:hover {
			background: rgba(114, 108, 230, 0.05);
		}

		.btn-accent {
			background: var(--accent);
			color: white;
		}

		.btn-accent:hover {
			background: #ff5252;
			box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
		}

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

		.btn-warning:hover {
			background: #ffb300;
		}

		.hero-image {
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			width: 50%;
			max-width: 600px;
			z-index: 1;
		}

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

		.hero-image svg {
			animation: float 6s ease-in-out infinite;
		}

		.clients {
			display: flex;
			flex-wrap: wrap;
			gap: 24px;
			margin-top: 40px;
			align-items: center;
		}

		.client-logo {
			display: flex;
			flex-direction: column;
			align-items: center;
			opacity: 0.8;
			transition: var(--transition);
		}

		.client-logo:hover {
			opacity: 1;
			transform: translateY(-5px);
		}

		.client-logo .logo-circle {
			width: 80px;
			height: 80px;
			border-radius: 50%;
			background: white;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			margin-bottom: 10px;
		}

		.client-logo .logo-circle i {
			font-size: 32px;
			color: var(--primary);
		}

		.client-name {
			font-size: 14px;
			font-weight: 600;
			text-align: center;
		}

		/* ============================================
		   ANNOUNCEMENT BANNER
		   ============================================ */
		.announcement-banner {
			background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
			color: white;
			text-align: center;
			padding: 20px 0;
			position: relative;
			overflow: hidden;
		}

		.announcement-content {
			position: relative;
			z-index: 2;
			max-width: 900px;
			margin: 0 auto;
		}

		.announcement-banner h2 {
			font-size: 36px;
			margin-bottom: 12px;
			font-weight: 700;
			line-height: 1.3;
		}

		.announcement-banner p {
			font-size: 16px;
			max-width: 700px;
			margin: 0 auto;
			opacity: 0.9;
			line-height: 1.6;
		}

		.banner-highlight {
			background: rgba(255, 255, 255, 0.2);
			padding: 2px 8px;
			border-radius: 4px;
		}

		.pulse {
			animation: pulse 2s infinite;
		}

		@keyframes pulse {
			0% { transform: scale(1); }
			50% { transform: scale(1.1); }
			100% { transform: scale(1); }
		}

		/* ============================================
		   STATISTICS SECTION
		   ============================================ */
		.stats {
			padding: 80px 0 0 0;
			background: white;
		}

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

		.stat-card {
			text-align: center;
			padding: 32px 24px;
			border-radius: 12px;
			background: var(--light);
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
			transition: var(--transition);
		}

		.stat-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(114, 108, 230, 0.1);
		}

		.stat-number {
			font-size: 42px;
			font-weight: 800;
			color: var(--primary);
			margin-bottom: 8px;
			transition: all 2s ease-out;
			line-height: 1.2;
		}

		.stat-number-split {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 4px;
			margin-bottom: 8px;
		}

		.stat-number-split .stat-number {
			margin-bottom: 0;
		}

		.stat-divider {
			font-size: 42px;
			font-weight: 800;
			color: var(--primary);
			line-height: 1.2;
		}

		.stat-label {
			font-size: 16px;
			color: var(--gray);
			line-height: 1.5;
		}

		.stats .section-title h2 {
			color: var(--dark);
		}

		/* ============================================
		   PROBLEMS SECTION
		   ============================================ */
		.problems {
			padding: 80px 0;
			background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
		}

		.section-title {
			text-align: center;
			margin-bottom: 48px;
		}

		.sticky-section-title {
			position: sticky;
			top: 80px;
			background: rgba(255, 255, 255, 0.95);
			backdrop-filter: blur(10px);
			z-index: 100;
			padding: 20px 0;
			margin-bottom: 40px !important;
			border-bottom: 1px solid var(--light-gray);
		}

		.section-title h2 {
			font-size: 36px;
			color: var(--dark);
			margin-bottom: 16px;
			font-weight: 700;
			line-height: 1.3;
		}

		.section-title p {
			color: var(--gray);
			max-width: 700px;
			margin: 0 auto;
			font-size: 16px;
			line-height: 1.6;
		}

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

		.problem-card {
			background: white;
			border-radius: 12px;
			padding: 32px 24px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
			transition: var(--transition);
			border-left: 4px solid var(--accent);
			position: relative;
			overflow: hidden;
		}

		.problem-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
			transition: left 0.6s ease;
		}

		.problem-card:hover::before {
			left: 100%;
		}

		.problem-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(114, 108, 230, 0.1);
		}

		.problem-icon {
			width: 64px;
			height: 64px;
			background: rgba(255, 107, 107, 0.1);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 20px;
			font-size: 28px;
			color: var(--accent);
		}

		.problem-card h3 {
			font-size: 20px;
			margin-bottom: 12px;
			color: var(--dark);
			font-weight: 600;
			line-height: 1.4;
			text-align: center;
		}

		.problem-card p {
			color: var(--gray);
			margin-bottom: 0;
			font-size: 16px;
			line-height: 1.6;
		}

		.solution-highlight {
			background: linear-gradient(135deg, rgba(114, 108, 230, 0.1) 0%, rgba(114, 108, 230, 0.05) 100%);
			border: 2px solid rgba(114, 108, 230, 0.2);
			border-radius: 16px;
			padding: 32px 40px;
			margin-top: 50px;
			position: relative;
			overflow: hidden;
			box-shadow: 0 8px 25px rgba(114, 108, 230, 0.1);
			transition: all 0.4s ease;
			display: flex;
			align-items: center;
			gap: 24px;
		}

		.solution-highlight::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			width: 4px;
			background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
		}

		.solution-highlight:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 40px rgba(114, 108, 230, 0.2);
			border-color: rgba(114, 108, 230, 0.4);
		}

		.solution-icon {
			flex-shrink: 0;
			width: 60px;
			height: 60px;
			background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 4px 15px rgba(114, 108, 230, 0.3);
		}

		.solution-icon i {
			font-size: 28px;
			color: white;
		}

		.solution-highlight p {
			color: var(--dark);
			font-size: 18px;
			line-height: 1.7;
			margin: 0;
			font-weight: 500;
			flex: 1;
		}



		/* ============================================
		   TECHNICAL CARDS SECTION
		   ============================================ */
		.tech-cards {
			padding: 80px 0;
			background: white;
		}

		.tech-cards-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
			align-items: stretch;
		}

		.tech-card {
			background: white;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
			transition: var(--transition);
			border: 1px solid var(--light-gray);
			display: flex;
			flex-direction: column;
		}

		.tech-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 40px rgba(114, 108, 230, 0.15);
		}

		.tech-card-header {
			background: var(--primary);
			color: white;
			padding: 20px;
			text-align: center;
		}

		.tech-card-header h3 {
			font-size: 22px;
			margin: 0;
			font-weight: 600;
		}

		.tech-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
		}

		.spec-list {
			list-style: none;
			margin-bottom: 20px;
			flex-shrink: 0;
		}

		.spec-list li {
			padding: 10px 0;
			border-bottom: 1px solid var(--light-gray);
			display: flex;
			justify-content: space-between;
			font-size: 15px;
		}

		.spec-list li:last-child {
			border-bottom: none;
		}

		.spec-name {
			font-weight: 600;
			color: var(--dark);
			font-size: 15px;
		}

		.spec-value {
			color: var(--gray);
			text-align: right;
			font-size: 15px;
		}

		.tech-highlight {
			background: rgba(81, 204, 255, 0.1);
			padding: 16px;
			border-radius: 8px;
			margin: 16px 0;
			border-left: 4px solid var(--secondary);
		}

		.tech-highlight p {
			margin: 0;
			color: var(--dark);
			font-weight: 600;
			font-size: 15px;
			line-height: 1.5;
		}

		.tech-highlight p i {
			color: var(--secondary);
			margin-right: 10px;
		}

		/* ============================================
		   SMART STICKER-SENSOR SECTION
		   ============================================ */
		.smart-sticker {
			padding: 80px 0;
			background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
			color: white;
			position: relative;
			overflow: hidden;
		}
		
		/* Reduce bottom padding on large screens to remove empty space */
		@media (min-width: 993px) {
			.smart-sticker {
				padding: 80px 0 0 0; /* Remove bottom padding to eliminate empty space */
			}
		}

		.sticker-parallax {
			background-attachment: fixed;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
		}

		.sticker-container {
			display: flex;
			align-items: flex-start; /* Align items to top */
			gap: 48px;
			position: relative;
			z-index: 2;
		}
		
		/* Adjust content position on large screens to align button with caption bottom */
		@media (min-width: 993px) {
			.smart-sticker .section-title {
				margin-bottom: 72px; /* Increased spacing after title */
			}
			.sticker-content {
				padding-top: 50px; /* Push content down to align centers with image */
			}
			.sticker-container {
				margin-bottom: -100px; /* Negative margin to remove empty space at bottom */
			}
		}
		
		/* Center alignment on mobile */
		@media (max-width: 992px) {
			.sticker-container {
				align-items: center;
			}
		}

		.sticker-content {
			flex: 1;
		}

		.sticker-image {
			flex: 1;
			text-align: center;
			position: relative;
		}
		
		/* Remove line-height gap only on desktop */
		@media (min-width: 993px) {
			.sticker-image {
				line-height: 0;
			}
		}

		/* Image now stands alone without container background */

		.sticker-content h2 {
			font-size: 36px;
			margin-bottom: 20px;
			font-weight: 700;
			line-height: 1.3;
		}

		.sticker-content p {
			margin-bottom: 24px;
			opacity: 0.9;
			font-size: 16px;
			line-height: 1.6;
		}

		.sticker-features {
			list-style: none;
			margin-top: 0; /* Remove top margin to align with image top */
		}
		
		/* Add margin on mobile for better spacing */
		@media (max-width: 992px) {
			.sticker-features {
				margin-top: 0px;
			}
		}

		.sticker-features li {
			margin-bottom: 12px;
			display: flex;
			align-items: center;
			font-size: 16px;
			line-height: 1.6;
		}

		.sticker-features li i {
			margin-right: 15px;
			font-size: 20px;
			color: var(--secondary);
		}

		/* Button alignment - only on large screens - align with list text */
		.sticker-content .btn-magnetic {
			margin-left: 35px; /* icon width (20px) + margin-right (15px) to align with text */
		}

		/* Updated image styles for transparent PNG */
		.sticker-image img {
			width: 100%;
			max-width: 700px;
			height: auto;
			border-radius: 12px;
			background-color: transparent !important;
			position: relative;
			z-index: 2;
			object-fit: contain;
			display: block;
			margin: 0;
			padding: 0;
			
			/* Shadow directly on the image, not the container */
			filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
			
			/* Ensure transparency works properly */
			mix-blend-mode: normal;
			transition: transform 0.3s ease;
		}

		.sticker-image img:hover {
			transform: scale(1.02);
		}

		/* Reduce entire sticker-image container by 30% on large screens */
		@media (min-width: 993px) {
			.sticker-image {
				transform: scale(0.7);
				transform-origin: top center; /* Scale from top to remove gap above */
				display: flex;
				flex-direction: column;
				align-items: center; /* Center image and caption horizontally */
				margin-top: 0;
				padding-top: 0;
				align-self: flex-start; /* Align image to top to remove gap */
			}
			
			.sticker-image img {
				max-width: 490px; /* 700px * 0.7 = 490px */
				transform: none; /* Remove scale from image, apply to container */
				margin: 0 auto; /* Center the image */
				margin-bottom: 0;
			}
			
			.sticker-image:hover img {
				transform: scale(1.02); /* Hover effect on scaled container */
			}
			
			.sticker-image-caption {
				margin-left: auto;
				margin-right: auto;
			}
		}

		/* Caption under image - bold and large */
		.sticker-image-caption {
			margin: 0;
			padding: 0;
			text-align: center;
			font-weight: 900;
			font-size: 28px;
			color: rgba(255, 255, 255, 1);
			text-transform: uppercase;
			letter-spacing: 2px;
			line-height: 1.2;
			text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		}

		@media (min-width: 993px) {
			.sticker-image-caption {
				margin-top: 30px; /* Gap between image and caption text */
				font-size: 26px; /* Smaller font to fit in one line */
				white-space: nowrap; /* Force single line */
			}
		}

		/* ============================================
		   SHIPMENT VISIBILITY SECTION
		   ============================================ */
		.shipment-visibility-section {
			padding: 80px 0;
			background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
			color: white;
			position: relative;
			overflow: hidden;
		}

		@media (max-width: 992px) {
			.shipment-visibility-section {
				padding: 80px 0 20px 0;
			}
		}

		.shipment-visibility-section .section-title {
			text-align: center;
			margin-bottom: 60px;
		}

		.shipment-visibility-container {
			display: flex;
			align-items: center;
			gap: 48px;
			position: relative;
			z-index: 2;
		}

		@media (max-width: 992px) {
			.shipment-visibility-container {
				flex-direction: column;
			}
		}

		.shipment-visibility-content {
			flex: 1;
		}

		.shipment-visibility-image {
			flex: 1;
			text-align: center;
			position: relative;
		}

		@media (min-width: 993px) {
			.shipment-visibility-image {
				line-height: 0;
			}
		}

		.shipment-visibility-features {
			list-style: none;
			margin-top: 0;
			padding: 0;
		}

		.shipment-visibility-features li {
			margin-bottom: 12px;
			display: flex;
			align-items: center;
			font-size: 16px;
			line-height: 1.6;
		}

		.shipment-visibility-features li i {
			margin-right: 15px;
			font-size: 20px;
			color: var(--secondary);
		}

		.shipment-visibility-content .btn-magnetic {
			margin-left: 35px;
		}

		@media (max-width: 992px) {
			.shipment-visibility-content .btn-magnetic {
				margin-left: 0;
				width: 100%;
				text-align: center;
			}
		}

		.shipment-visibility-image img {
			width: 100%;
			max-width: 700px;
			height: auto;
			border-radius: 12px;
			background-color: transparent !important;
			position: relative;
			z-index: 2;
			object-fit: contain;
			display: block;
			margin: 0 auto;
			padding: 0;
			filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
			mix-blend-mode: normal;
			transition: transform 0.3s ease;
		}

		.shipment-visibility-image img:hover {
			transform: scale(1.02);
		}

		/* Desktop: increase image by 75% (1.75x) */
		@media (min-width: 993px) {
			.shipment-visibility-image {
				display: flex;
				flex-direction: column;
				align-items: center;
			}
			
			.shipment-visibility-image img {
				max-width: 1225px; /* 700px * 1.75 = 1225px */
			}
		}

		/* Medium screens (tablets): decrease image by 30%, then increase by 10% */
		@media (min-width: 768px) and (max-width: 992px) {
			.shipment-visibility-image {
				display: flex;
				flex-direction: column;
				align-items: center;
			}
			
			.shipment-visibility-image img {
				max-width: 539px; /* 490px * 1.1 = 539px (increase by 10%) */
			}
		}

		/* Mobile screens: increase image by 3x */
		@media (max-width: 767px) {
			.shipment-visibility-image {
				display: flex;
				flex-direction: column;
				align-items: center;
			}
			
			.shipment-visibility-image img {
				max-width: 2100px; /* 700px * 3 = 2100px */
			}
		}

		/* ============================================
		   PLATFORM ARCHITECTURE SECTION
		   ============================================ */
		.how-to-use {
			padding: 80px 0;
			background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
		}

		.how-to-use-steps {
			display: flex;
			flex-direction: row;
			gap: 24px;
			margin-top: 40px;
		}

		.step {
			flex: 1;
			text-align: center;
			padding: 32px 24px;
			background: white;
			border-radius: 12px;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
			position: relative;
		}

		.step-image {
			margin-bottom: 20px;
			height: 183px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.step-image img {
			width: 166px;
			height: 166px;
			object-fit: contain;
			display: block;
		}

		.step:first-child .step-image {
			height: 183px;
		}

		.step:first-child .step-image img {
			width: 183px;
			height: 183px;
		}

		.how-to-use-connector::after {
			display: none;
		}

		.how-to-use-connector::before {
			display: none;
		}

		@keyframes connectorPulse {
			0% { transform: scale(0.8); opacity: 1; }
			70% { transform: scale(1.5); opacity: 0; }
			100% { transform: scale(0.8); opacity: 0; }
		}

		.step-number {
			width: 48px;
			height: 48px;
			background: var(--primary);
			color: white;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 22px;
			font-weight: 700;
			margin: 0 auto 16px;
		}

		.step h3 {
			font-size: 20px;
			margin-bottom: 12px;
			color: var(--dark);
			font-weight: 600;
			line-height: 1.4;
		}

		.step p {
			color: var(--gray);
			font-size: 16px;
			line-height: 1.6;
		}

		/* ============================================
		   WORLD MAP SECTION
		   ============================================ */
		.world-map-section {
			padding: 80px 0;
			background: white;
		}
		
		/* Mobile World Map Section - reduce spacing */
		@media (max-width: 800px) {
			.world-map-section {
				padding: 10px 0 !important;
			}
		}
		
		@media (max-width: 576px) {
			.world-map-section {
				padding: 8px 0 !important;
			}
		}
		
		@media (max-width: 480px) {
			.world-map-section {
				padding: 6px 0 !important;
			}
		}

		.world-map {
			position: relative;
			width: 100%;
			height: 500px;
			background: transparent;
		}
		
		/* Mobile World Map - reduce height */
		@media (max-width: 800px) {
			.world-map {
				height: 300px !important;
			}
		}
		
		@media (max-width: 576px) {
			.world-map {
				height: 250px !important;
			}
		}
		
		@media (max-width: 480px) {
			.world-map {
				height: 220px !important;
			}
		}

		.world-map svg {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
		}

		.signal-pulse {
			position: absolute;
			width: 20px;
			height: 20px;
			background: var(--primary);
			border-radius: 50%;
			transform: translate(-50%, -50%);
			z-index: 10;
			pointer-events: none;
		}

		.signal-pulse::after {
			content: '';
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			background: var(--primary);
			border-radius: 50%;
			animation: signalPulse 2s infinite;
			pointer-events: none;
		}

		@keyframes signalPulse {
			0% { 
				transform: scale(1); 
				opacity: 1; 
			}
			100% { 
				transform: scale(3); 
				opacity: 0; 
			}
		}

		/* ============================================
		   PRODUCT FEATURES SECTION
		   ============================================ */
		.features {
			padding: 80px 0;
			background: var(--light);
		}

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

		.feature-card {
			background: white;
			border-radius: 12px;
			padding: 32px 24px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
			transition: var(--transition);
			border-bottom: 4px solid var(--secondary);
			position: relative;
			overflow: hidden;
		}

		.feature-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(81, 204, 255, 0.1), transparent);
			transition: left 0.6s ease;
		}

		.feature-card:hover::before {
			left: 100%;
		}

		.feature-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(114, 108, 230, 0.1);
		}

		.feature-icon {
			width: 64px;
			height: 64px;
			background: rgba(81, 204, 255, 0.1);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 20px;
			font-size: 28px;
			color: var(--secondary);
		}

		.feature-card h3 {
			font-size: 20px;
			margin-bottom: 12px;
			color: var(--dark);
			font-weight: 600;
			line-height: 1.4;
			text-align: center;
		}

		.feature-card p {
			color: var(--gray);
			margin-bottom: 0;
			font-size: 16px;
			line-height: 1.6;
		}

		/* ============================================
		   BLOG CTA STYLES
		   ============================================ */
		.blog-cta {
			text-align: center;
			margin-top: 10px;
		}

		.blog-cta .btn {
			padding: 16px 40px;
			font-size: 18px;
			display: inline-flex;
			align-items: center;
			gap: 10px;
			transition: all 0.3s ease;
		}

		.blog-cta .btn:hover {
			transform: translateY(-3px);
			box-shadow: 0 10px 25px rgba(114, 108, 230, 0.3);
		}

		.blog-cta p {
			margin-top: 16px;
			color: var(--gray);
			font-size: 15px;
			max-width: 400px;
			margin-left: auto;
			margin-right: auto;
			line-height: 1.6;
		}

		/* ============================================
		   CONTACT FORM SECTION
		   ============================================ */
		.contact-form-section {
			padding: 80px 0;
			background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
		}

		.contact-container {
			max-width: 600px;
			margin: 0 auto;
			background: white;
			padding: 40px;
			border-radius: 12px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		.contact-form {
			display: flex;
			flex-direction: column;
			gap: 16px;
		}

		.form-group {
			display: flex;
			flex-direction: column;
			gap: 8px;
		}

		.form-group label {
			font-weight: 600;
			color: var(--dark);
		}

		.form-group input,
		.form-group textarea,
		.form-group select {
			padding: 12px 16px;
			border: 2px solid var(--light-gray);
			border-radius: 8px;
			font-family: 'Inter', sans-serif;
			font-size: 16px;
			transition: var(--transition);
		}

		.form-group input:focus,
		.form-group textarea:focus,
		.form-group select:focus {
			outline: none;
			border-color: var(--primary);
			box-shadow: 0 0 0 3px rgba(114, 108, 230, 0.1);
		}

		.form-group textarea {
			resize: vertical;
			min-height: 120px;
		}

		/* ============================================
		   TESTIMONIALS SECTION
		   ============================================ */
		.testimonials {
			padding: 80px 0;
			background: white;
		}

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

		.testimonial-card {
			background: var(--light);
			border-radius: 12px;
			padding: 28px 24px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
			transition: var(--transition);
			position: relative;
		}

		.testimonial-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(114, 108, 230, 0.1);
		}

		.testimonial-card::before {
			content: '"';
			position: absolute;
			top: 20px;
			left: 20px;
			font-size: 60px;
			color: rgba(114, 108, 230, 0.1);
			font-family: Georgia, serif;
			line-height: 1;
		}

		.testimonial-text {
			margin-bottom: 16px;
			font-style: italic;
			color: var(--dark);
		}

		.testimonial-text h3 {
			font-size: 18px;
			margin-bottom: 12px;
			color: var(--dark);
			line-height: 1.4;
			font-weight: 600;
		}

		.testimonial-text p {
			color: var(--gray);
			line-height: 1.6;
			margin-bottom: 0;
			font-size: 16px;
		}

		.author-info h4 {
			color: var(--primary);
			font-weight: 600;
			font-size: 14px;
		}

		.testimonial-author {
			display: flex;
			align-items: center;
		}

		.author-avatar {
			width: 50px;
			height: 50px;
			border-radius: 50%;
			background: var(--primary);
			display: flex;
			align-items: center;
			justify-content: center;
			margin-right: 15px;
			color: white;
			font-weight: 700;
		}

		.author-info h4 {
			font-size: 16px;
			color: var(--dark);
			margin-bottom: 4px;
			font-weight: 600;
		}

		.author-info p {
			color: var(--gray);
			font-size: 14px;
			line-height: 1.5;
		}

		/* ============================================
		   CTA SECTION
		   ============================================ */
		.cta {
			padding: 80px 0;
			background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
			color: white;
			text-align: center;
		}

		.cta-content {
			max-width: 700px;
			margin: 0 auto;
		}

		.cta h2 {
			font-size: 32px;
			margin-bottom: 16px;
			font-weight: 700;
			line-height: 1.3;
		}

		.cta p {
			max-width: 600px;
			margin: 0 auto 24px;
			font-size: 18px;
			opacity: 0.9;
			line-height: 1.6;
		}

		.cta-buttons {
			display: flex;
			justify-content: center;
			gap: 16px;
			flex-wrap: wrap;
		}

		/* ============================================
		   FAQ SECTION
		   ============================================ */
		.faq {
			padding: 80px 0;
			background: var(--light);
		}

		.faq-grid {
			display: flex;
			flex-direction: column;
			gap: 12px;
			max-width: 800px;
			margin: 0 auto;
		}

		.faq-card {
			background: white;
			border-radius: 12px;
			padding: 0;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
			transition: var(--transition);
			border: 1px solid var(--light-gray);
			overflow: hidden;
		}

		.faq-card.active {
			box-shadow: 0 10px 25px rgba(114, 108, 230, 0.1);
			border-color: var(--primary-light);
		}

		.faq-question {
			font-size: 17px;
			font-weight: 600;
			color: var(--dark);
			padding: 20px 60px 20px 24px;
			margin: 0;
			cursor: pointer;
			display: flex;
			align-items: flex-start;
			gap: 16px;
			transition: var(--transition);
			position: relative;
			user-select: none;
			line-height: 1.5;
		}

		.faq-question:hover {
			color: var(--primary);
		}

		.faq-question i {
			color: var(--primary);
			font-size: 20px;
			margin-top: 2px;
			flex-shrink: 0;
			transition: var(--transition);
		}

		.faq-card.active .faq-question i {
			transform: rotate(180deg);
		}

		.faq-question::after {
			content: '\f078';
			font-family: 'Font Awesome 6 Free';
			font-weight: 900;
			position: absolute;
			right: 24px;
			top: 50%;
			transform: translateY(-50%);
			color: var(--primary);
			font-size: 16px;
			transition: var(--transition);
		}

		.faq-card.active .faq-question::after {
			transform: translateY(-50%) rotate(180deg);
		}

		.faq-answer {
			color: var(--gray);
			line-height: 1.6;
			padding: 0 24px;
			max-height: 0;
			overflow: hidden;
			transition: all 0.3s ease;
			border-top: 1px solid transparent;
			font-size: 16px;
		}

		.faq-card.active .faq-answer {
			padding: 0 24px 20px 24px;
			max-height: 500px;
			border-top-color: var(--light-gray);
		}

		.faq-answer strong {
			color: var(--dark);
		}

		/* ============================================
		   FOOTER
		   ============================================ */
		footer {
			background: var(--dark);
			color: white;
			padding: 60px 0 40px;
		}

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

		.footer-col h3 {
			font-size: 18px;
			margin-bottom: 12px;
			position: relative;
			padding-bottom: 10px;
			font-weight: 600;
		}

		.footer-col h3::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 50px;
			height: 3px;
			background: var(--primary);
		}

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

		.footer-links li {
			margin-bottom: 10px;
		}
		
		.footer-links a {
			font-size: 15px;
		}

		.footer-links a {
			color: #a0aec0;
			text-decoration: none;
			transition: var(--transition);
		}

		.footer-links a:hover {
			color: white;
			padding-left: 5px;
		}

		.footer-contact li {
			display: flex;
			margin-bottom: 12px;
			align-items: flex-start;
			font-size: 15px;
		}

		.footer-contact i {
			margin-right: 10px;
			min-width: 20px;
			color: var(--primary);
		}

		.social-links {
			display: flex;
			gap: 15px;
			margin-top: 20px;
		}

		.social-links a {
			width: 40px;
			height: 40px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.1);
			display: flex;
			align-items: center;
			justify-content: center;
			transition: var(--transition);
			color: white;
			text-decoration: none;
		}

		.social-links a:hover {
			background: var(--primary);
			transform: translateY(-5px);
		}

		.copyright {
			text-align: center;
			padding-top: 32px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
			color: #a0aec0;
			font-size: 14px;
			line-height: 1.5;
		}

		/* ============================================
		   ANIMATION CLASSES
		   ============================================ */
		.fade-in-up {
			opacity: 0;
			transform: translateY(30px);
		}

		.animated {
			opacity: 1;
			transform: translateY(0);
			transition: all 0.8s ease;
		}

		.card-3d {
			transition: transform 0.5s ease, box-shadow 0.5s ease;
		}

		.card-3d:hover {
			transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
			box-shadow: 0 25px 50px rgba(114, 108, 230, 0.15);
		}

		/* ============================================
		   iOS-SPECIFIC FIXES
		   ============================================ */
		@supports (-webkit-touch-callout: none) {
			.hero {
				height: auto !important;
				min-height: 800px;
				padding: 150px 0 80px !important;
			}
			
			.hero::before {
				width: 100% !important;
				background-position: center !important;
				height: 400px;
				position: relative;
				margin-top: 40px;
			}
			
			
			/* Fix for sticky elements on iOS */
			.sticky-section-title {
				position: relative !important;
				top: 0 !important;
			}
			
			/* Prevent elastic scrolling issues */
			body {
				-webkit-overflow-scrolling: touch;
			}
			
			/* Fix for button hover states on iOS */
			.btn:hover {
				transform: none;
			}
			
			.card-3d:hover {
				transform: none;
			}
		}

		/* ============================================
		   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
		   ============================================ */
		/* Mobile Optimization for Blog CTA */
		@media (max-width: 768px) {
			.blog-cta {
				margin-top: 40px;
			}
			
			.blog-cta .btn {
				padding: 14px 32px;
				font-size: 16px;
				width: 100%;
				max-width: 280px;
				justify-content: center;
			}
			
			.blog-cta p {
				font-size: 14px;
				padding: 0 20px;
			}
		}

		/* Tablet and Desktop Responsive */
		@media (max-width: 1200px) {
			/* Hero h1 font size is now controlled by responsive styles above */
			
			.section-title h2 {
				font-size: 32px;
			}
			
			.announcement-banner h2 {
				font-size: 32px;
			}
			
			/* Image size adjustment - only if not on large screens */
			@media (max-width: 992px) {
				.sticker-image img {
					max-width: 600px;
				}
			}
		}

		@media (max-width: 992px) {
			.hero {
				padding: 140px 0 60px;
				height: auto !important;
				min-height: 700px;
			}
			
			/* Hero h1 font size is now controlled by responsive styles above */
			
			.problems, .tech-cards, 
			.smart-sticker, .how-to-use, .world-map-section, 
			.features, .contact-form-section, .testimonials, 
			.cta, .faq, .stats {
				padding: 60px 0;
			}
			
			.hero-image {
				position: relative;
				width: 100%;
				max-width: 500px;
				margin: 50px auto 0;
				transform: none;
			}
			
			.hero-content {
				max-width: 100%;
				text-align: center;
				margin: 0 auto;
			}
			
			.hero p {
				margin: 0 auto 30px;
			}
			
			.hero::before {
				position: relative !important;
				width: 100% !important;
				height: 400px;
				margin-top: 40px;
			}
			
			.sticker-container {
				flex-direction: column;
			}
			
			.sticker-image {
				order: -1;
				margin-bottom: 1.5em; /* Reduced gap between caption and list */
				display: flex;
				flex-direction: column;
				align-items: center; /* Center image and caption */
			}
			
			/* Caption styling for medium screens */
			.sticker-image-caption {
				margin-top: 20px; /* Gap between image and caption */
				text-align: center;
				line-height: 1.3;
			}
			
			/* Button styling for medium screens - same size as Moeco API button */
			.sticker-content {
				text-align: left; /* Left align text list */
			}
			
			.sticker-features {
				text-align: left; /* Ensure list is left-aligned */
			}
			
			.sticker-content .btn-magnetic {
				margin-left: 0;
				width: 100%;
				text-align: center;
			}
			
			.faq-grid {
				grid-template-columns: 1fr;
			}

			.stats-grid {
				grid-template-columns: repeat(2, 1fr);
			}

			.how-to-use-steps {
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				gap: 24px;
			}

			.how-to-use-connector::after,
			.how-to-use-connector::before {
				display: none;
			}

			
			/* Image size adjustment for tablet */
			.sticker-image img {
				max-width: 400px;
			}
		}

		@media (max-width: 800px) {
			/* Mobile menu styles are defined in components.css */
			/* This section intentionally left for other mobile-specific overrides */
			
			.hero {
				padding: 120px 0 50px;
				height: auto !important;
				min-height: 600px;
			}
			
			/* Hero h1 and p font sizes are now controlled by responsive styles above */
			
			.btn {
				display: block;
				width: 100%;
				margin-bottom: 12px;
				text-align: center;
			}
			
			.btn-secondary {
				margin-left: 0;
			}
			
			.section-title h2 {
				font-size: 28px;
			}
			
			.section-title {
				margin-bottom: 36px;
			}
			
			.problems, .tech-cards, 
			.smart-sticker, .how-to-use, 
			.features, .contact-form-section, .testimonials, 
			.cta, .faq, .stats {
				padding: 50px 0;
			}
			
			/* World Map Section Mobile Spacing Fix */
			.world-map-section {
				padding: 10px 0 !important;
			}
			
			.world-map-section .container {
				padding-top: 0 !important;
				padding-bottom: 0 !important;
			}
			
			.world-map-section .section-title {
				margin-bottom: 8px !important;
				margin-top: 0 !important;
				padding: 0 !important;
			}
			
			.world-map-section .section-title h2 {
				margin-bottom: 4px !important;
				margin-top: 0 !important;
				line-height: 1.2 !important;
			}
			
			.world-map-section .section-title p {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				line-height: 1.4 !important;
			}
			
			.world-map-section .world-map {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				padding: 0 !important;
				height: 300px !important;
			}
			
			.clients {
				justify-content: center;
			}
			
			.cta-buttons {
				flex-direction: column;
				align-items: center;
			}

			.sticky-section-title {
				position: relative;
				top: 0;
			}

			.faq-grid {
				grid-template-columns: 1fr;
			}

			.contact-container {
				padding: 30px 20px;
			}
			
			
			/* Image size adjustment for mobile */
			.sticker-image img {
				max-width: 300px;
			}
			
			/* Caption on mobile */
			.sticker-image-caption {
				font-size: 18px;
				letter-spacing: 1px;
				margin-top: 20px; /* Small gap on mobile */
				margin-bottom: 0;
				line-height: 1.3;
			}
			
			/* Ensure image is centered on mobile */
			.sticker-image {
				line-height: normal;
				display: flex;
				flex-direction: column;
				align-items: center;
			}
		}

		@media (max-width: 800px) {
			/* Button full width on small screens - same as Moeco API button */
			.sticker-content .btn-magnetic {
				display: block !important;
				width: 100% !important;
				min-width: auto !important;
				padding: 14px 30px !important;
				text-align: center !important;
				margin-left: 0 !important;
				margin-right: 0 !important;
			}
		}
		
		@media (max-width: 576px) {
			.hero {
				padding: 110px 0 40px;
				height: auto !important;
				min-height: 550px;
			}
			
			/* Hero h1 and p font sizes are now controlled by responsive styles above */
			.hero h1 {
				margin-bottom: 20px;
			}
			
			.hero p {
				margin-bottom: 24px;
			}
			
			.section-title h2 {
				font-size: 24px;
				margin-bottom: 12px;
			}
			
			.section-title p {
				font-size: 15px;
			}
			
			.section-title {
				margin-bottom: 32px;
			}
			
			.testimonial-grid {
				grid-template-columns: 1fr;
			}
			
			.features, .problems, .smart-sticker, 
			.testimonials, .cta, .faq, .stats, 
			.tech-cards, .how-to-use, 
			.contact-form-section {
				padding: 48px 0;
			}
			
			/* World Map Section Mobile Spacing Fix */
			.world-map-section {
				padding: 8px 0 !important;
			}
			
			.world-map-section .container {
				padding-top: 0 !important;
				padding-bottom: 0 !important;
			}
			
			.world-map-section .section-title {
				margin-bottom: 6px !important;
				margin-top: 0 !important;
				padding: 0 !important;
			}
			
			.world-map-section .section-title h2 {
				margin-bottom: 3px !important;
				margin-top: 0 !important;
				line-height: 1.2 !important;
			}
			
			.world-map-section .section-title p {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				line-height: 1.3 !important;
			}
			
			.world-map-section .world-map {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				padding: 0 !important;
				height: 250px !important;
			}
			
			.problem-card, .feature-card {
				padding: 24px 20px;
			}
			
			.stat-card {
				padding: 24px 20px;
			}
			
			.problems-grid, .features-grid, 
			.stats-grid, .tech-cards-grid, .testimonial-grid {
				gap: 20px;
			}
			
			.solution-highlight {
				padding: 28px 32px;
				margin-top: 40px;
			}
			
			.solution-highlight p {
				font-size: 17px;
			}

			.stats-grid {
				grid-template-columns: 1fr;
			}

			.faq-grid {
				grid-template-columns: 1fr;
			}
			
			/* Extra small mobile fixes */
			
			.hero::before {
				height: 300px !important;
			}
			
			.footer-grid {
				grid-template-columns: 1fr;
				text-align: center;
				gap: 30px;
			}
			
			/* Smaller shadow on mobile */
			.sticker-image img {
				filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
				max-width: 300px;
			}
		}

		/* Mobile FAQ Optimization */
		@media (max-width: 768px) {
			.faq {
				padding: 50px 0;
			}
			
			.faq-question {
				font-size: 16px;
				padding: 20px 50px 20px 20px;
				gap: 12px;
				line-height: 1.4;
			}
			
			.faq-question i {
				font-size: 18px;
				margin-top: 1px;
			}
			
			.faq-question::after {
				right: 20px;
				font-size: 14px;
			}
			
			.faq-card.active .faq-answer {
				padding: 0 20px 20px 20px;
			}
			
			.faq-answer {
				padding: 0 20px;
				font-size: 14px;
				line-height: 1.6;
			}

			.how-to-use-steps {
				display: flex;
				flex-direction: column;
				gap: 20px;
			}

			.step {
				width: 100%;
				padding: 24px 20px;
			}

			.step-image {
				margin-bottom: 16px;
				height: 218px;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.step-image img {
				width: 198px;
				height: 198px;
				object-fit: contain;
			}

			.step:first-child .step-image {
				height: 218px;
			}

			.step:first-child .step-image img {
				width: 218px;
				height: 218px;
			}

			.how-to-use-connector::after {
				display: none;
			}

			.how-to-use-connector::before {
				display: none;
			}
		}

		@media (max-width: 480px) {
			.faq-question {
				padding: 18px 45px 18px 18px;
				font-size: 15px;
			}
			
			.faq-question i {
				font-size: 16px;
			}
			
			.faq-card.active .faq-answer {
				padding: 0 18px 18px 18px;
			}
			
			.faq-answer {
				padding: 0 18px;
				font-size: 15px;
			}
			
			.problems, .tech-cards, 
			.smart-sticker, .how-to-use, 
			.features, .contact-form-section, .testimonials, 
			.cta, .faq, .stats {
				padding: 40px 0;
			}
			
			/* World Map Section Mobile Spacing Fix */
			.world-map-section {
				padding: 6px 0 !important;
			}
			
			.world-map-section .container {
				padding-top: 0 !important;
				padding-bottom: 0 !important;
			}
			
			.world-map-section .section-title {
				margin-bottom: 4px !important;
				margin-top: 0 !important;
				padding: 0 !important;
			}
			
			.world-map-section .section-title h2 {
				margin-bottom: 2px !important;
				margin-top: 0 !important;
				line-height: 1.2 !important;
			}
			
			.world-map-section .section-title p {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				line-height: 1.3 !important;
			}
			
			.world-map-section .world-map {
				margin-top: 0 !important;
				margin-bottom: 0 !important;
				padding: 0 !important;
				height: 220px !important;
			}
			
			/* Even smaller shadow on very small screens */
			.sticker-image img {
				filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
				max-width: 250px;
			}
		}

		/* Footer Mobile Optimization */
		@media (max-width: 768px) {
			.footer-grid {
				grid-template-columns: 1fr;
				text-align: center;
				gap: 30px;
			}
			
			.footer-col {
				justify-self: center;
			}
			
			.footer-col h3::after {
				display: none;
			}
			
			.footer-col h3 {
				margin-bottom: 0;
				padding-bottom: 0;
			}
			
			.footer-contact,
			.footer-links {
				margin-top: 0 !important;
				line-height: 1.1 !important;
			}
			
			.footer-links li {
				margin-bottom: 4px !important;
			}
			
			.footer-links a {
				line-height: 1.1 !important;
			}
			
			.social-links {
				justify-content: center;
			}
		}

		/* Extra Extra Small devices (old phones, < 320px) */
		@media (max-width: 320px) {
			body {
				font-size: 14px;
				overflow-x: hidden;
				width: 100%;
				min-width: 280px;
			}
			
			.container {
				padding: 0 12px !important;
				width: 100% !important;
				max-width: 100% !important;
				overflow-x: hidden;
			}
			
			/* Header fix */
			.header-container {
				padding: 0 8px;
			}
			
			/* Logo - make smaller */
			.logo svg {
				width: 100px !important;
				height: auto !important;
			}
			
			/* Hero section */
			.hero {
				padding: 120px 0 30px !important;
				min-height: 500px !important;
			}
			
			/* Hero h1 and p font sizes are now controlled by responsive styles above */
			.hero h1 {
				line-height: 1.3;
				word-break: break-word;
			}
			
			.hero p {
				max-width: 100%;
			}
			
			/* Hero buttons - vertical layout */
			.hero-buttons {
				display: flex;
				flex-direction: column;
				gap: 10px;
			}
			
			.btn {
				padding: 12px 20px !important;
				font-size: 14px;
				width: 100%;
				max-width: 100%;
				white-space: normal;
				line-height: 1.4;
			}
			
			/* Clients - make smaller */
			.clients {
				grid-template-columns: repeat(2, 1fr) !important;
				gap: 10px !important;
				max-width: 100% !important;
			}
			
			.client-logo .logo-circle {
				width: 60px;
				height: 60px;
			}
			
			.client-logo .logo-circle i,
			.client-logo .logo-circle img {
				font-size: 24px;
				width: 36px;
				height: 36px;
			}
			
			/* Problem/Feature cards */
			.problems-grid,
			.features-grid {
				grid-template-columns: 1fr !important;
				gap: 15px;
			}
			
			.problem-card,
			.feature-card {
				padding: 20px 15px;
				margin: 0;
			}
			
			.problem-icon,
			.feature-icon {
				width: 50px;
				height: 50px;
				font-size: 24px;
			}
			
			/* Solution highlight */
			.solution-highlight {
				flex-direction: column;
				text-align: center;
				padding: 24px 20px;
				margin-top: 30px;
			}
			
			.solution-icon {
				width: 50px;
				height: 50px;
				margin: 0 auto;
			}
			
			.solution-icon i {
				font-size: 24px;
			}
			
			.solution-highlight p {
				font-size: 16px;
			}
			
			/* Technical cards */
			.tech-cards-grid {
				grid-template-columns: 1fr !important;
			}
			
			.tech-card {
				margin-bottom: 15px;
			}
			
			.spec-list li {
				padding: 8px 0;
				font-size: 14px;
				flex-wrap: wrap;
			}
			
			/* FAQ on narrow screens */
			.faq-question {
				padding: 16px 40px 16px 16px !important;
				font-size: 14px !important;
				line-height: 1.3;
			}
			
			.faq-card.active .faq-answer {
				padding: 0 16px 16px 16px !important;
			}
			
			/* Contact form */
			.contact-container {
				padding: 20px 15px !important;
			}
			
			.form-group input,
			.form-group textarea,
			.form-group select {
				padding: 10px 12px;
				font-size: 14px;
			}
			
			/* Footer */
			.footer-grid {
				gap: 20px;
			}
			
			.social-links a {
				width: 35px;
				height: 35px;
			}
			
			/* Remove horizontal scroll */
			html, body {
				max-width: 100%;
				overflow-x: hidden;
				position: relative;
			}
			
			* {
				max-width: 100%;
				box-sizing: border-box;
			}
			
			/* Image fix */
			img {
				max-width: 100%;
				height: auto;
			}
			
			/* Section titles */
			.section-title h2 {
				font-size: 22px !important;
			}
			
			.section-title p {
				font-size: 14px !important;
			}
			
			/* Statistics */
			.stat-number {
				font-size: 32px !important;
				line-height: 1.3 !important;
			}
			
			.stat-divider {
				font-size: 32px !important;
				line-height: 1.3 !important;
			}
			
			.stat-label {
				font-size: 14px !important;
			}
			
			/* Meet Smart Sticker-Sensor section */
			.sticker-features li {
				font-size: 14px;
			}
			
			/* Banner */
			.announcement-banner h2 {
				font-size: 22px !important;
			}
			
			.announcement-banner p {
				font-size: 14px !important;
			}
			
			/* Very small image on tiny screens */
			.sticker-image img {
				max-width: 200px;
				filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
			}
		}

		/* For very narrow screens (old phones) */
		@media (max-width: 280px) {
			body {
				font-size: 13px;
				min-width: 250px;
			}
			
			.container {
				padding: 0 8px !important;
			}
			
			/* Hero h1 and p font sizes are now controlled by responsive styles above */
			
			.btn {
				padding: 10px 16px !important;
				font-size: 13px;
			}
			
			.clients {
				grid-template-columns: 1fr !important;
			}
			
			.client-logo .logo-circle {
				width: 50px;
				height: 50px;
			}
			
			.client-name {
				font-size: 12px;
			}
			
			/* Form */
			.form-group label {
				font-size: 14px;
			}
			
			/* Footer */
			.footer-col h3 {
				font-size: 16px;
			}
			
			.footer-links li {
				font-size: 13px;
			}
			
			/* Smallest image size */
			.sticker-image img {
				max-width: 180px;
			}
		}

		/* ============================================
		   SEO & PERFORMANCE OPTIMIZATIONS
		   ============================================ */
		main {
			display: block;
		}

		img[data-src] {
			opacity: 0;
			transition: opacity 0.3s ease;
		}

		img.lazy-loaded {
			opacity: 1;
		}

		@media print {
			.no-print {
				display: none !important;
			}
			body {
				font-size: 12pt;
				line-height: 1.4;
				color: #000;
				background: #fff;
			}
		}

		/* Mobile Optimizations */

		/* Mobile line breaks for hero description */
		.mobile-br {
			display: none;
		}
		
		.tablet-br {
			display: none;
		}
		
		@media (max-width: 576px) {
			.mobile-br {
				display: block;
			}
			
			.desktop-br {
				display: none;
			}
		}
		
		/* Tablets (from 577px to 992px) */
		@media (min-width: 577px) and (max-width: 992px) {
			.tablet-br {
				display: block;
			}
			
			.mobile-br {
				display: none;
			}
		}

		/* Fix for clients grid on mobile */
		@media (max-width: 576px) {
			.clients {
				grid-template-columns: repeat(2, 1fr) !important;
				gap: 15px !important;
				max-width: 100% !important;
			}
			
			.client-logo .logo-circle {
				width: 70px;
				height: 70px;
			}
			
			.client-logo .logo-circle i,
			.client-logo .logo-circle img {
				font-size: 28px;
				width: 42px;
				height: 42px;
			}
			
			.client-name {
				font-size: 13px;
			}
			
			/* Remove transform on mobile to avoid overlapping */
			.client-logo {
				transform: none !important;
			}
			
			.client-logo:hover {
				transform: translateY(-3px) !important;
			}
		}

		/* Fix for technical cards on mobile and tablet */
		@media (max-width: 1023px) {
			.tech-cards-grid {
				grid-template-columns: 1fr !important;
				gap: 20px;
			}
			
			.tech-card {
				margin-bottom: 15px;
				min-width: 0;
				width: 100%;
				max-width: 100%;
			}
			
			.spec-list li {
				padding: 10px 0;
				font-size: 14px;
				flex-wrap: wrap;
			}
			
			.spec-name, .spec-value {
				word-break: break-word;
				max-width: 50%;
			}
		}

		@media (max-width: 480px) {
			.tech-card-body {
				padding: 20px 15px !important;
			}
			
			.spec-list li {
				font-size: 13px;
				flex-direction: column;
				align-items: flex-start;
				gap: 5px;
			}
			
			.spec-name, .spec-value {
				max-width: 100%;
				width: 100%;
				text-align: left;
			}
			
			.tech-highlight {
				padding: 12px;
				font-size: 14px;
			}
		}

		/* For very narrow screens (360px and below) */
		@media (max-width: 360px) {
			.clients {
				grid-template-columns: repeat(2, 1fr) !important;
				gap: 10px !important;
			}
			
			.client-logo .logo-circle {
				width: 60px;
				height: 60px;
			}
			
			.client-logo .logo-circle i,
			.client-logo .logo-circle img {
				font-size: 24px;
				width: 36px;
				height: 36px;
			}
			
			.client-name {
				font-size: 12px;
			}
			
			/* Remove transform on very small screens */
			.client-logo {
				transform: none !important;
			}
			
			.client-logo:hover {
				transform: translateY(-2px) !important;
			}
			
			.tech-card-body {
				padding: 15px 12px !important;
			}
			
			.spec-list li {
				font-size: 12px;
				padding: 8px 0;
			}
		}

		/* FALLBACK: If filter is not supported, use alternative shadow */
		@supports not (filter: drop-shadow(0 0 0)) {
			.sticker-image img {
				box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
			}
		}

		/* ============================================
		   BLOG SECTION STYLES
		   ============================================ */
		.blog-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
			gap: 30px;
			margin-bottom: 60px;
		}

		.blog-card {
			background: white;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			transition: var(--transition);
			border: 1px solid var(--light-gray);
		}

		.blog-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(114, 108, 230, 0.15);
		}

		.blog-card-image {
			height: 200px;
			overflow: hidden;
			position: relative;
		}

		.blog-card-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.blog-card:hover .blog-card-image img {
			transform: scale(1.05);
		}

		.blog-card-content {
			padding: 30px;
		}

		.blog-meta {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 15px;
			font-size: 14px;
		}

		.blog-date {
			color: var(--primary);
			font-weight: 600;
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.blog-card h3 {
			font-size: 20px;
			margin-bottom: 15px;
			line-height: 1.4;
			color: var(--dark);
		}

		.blog-card h3 a {
			color: inherit;
			text-decoration: none;
			transition: var(--transition);
		}

		.blog-card h3 a:hover {
			color: var(--primary);
		}

		.blog-excerpt {
			color: var(--gray);
			margin-bottom: 20px;
			line-height: 1.6;
		}

		.blog-read-more {
			color: var(--primary);
			font-weight: 600;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 8px;
			transition: var(--transition);
		}

		.blog-read-more:hover {
			gap: 12px;
		}

		.loading-state {
			text-align: center;
			padding: 80px 0;
		}

		.loading-spinner {
			width: 50px;
			height: 50px;
			border: 3px solid var(--light-gray);
			border-top-color: var(--primary);
			border-radius: 50%;
			animation: spin 1s linear infinite;
			margin: 0 auto 20px;
		}

		@keyframes spin {
			to { transform: rotate(360deg); }
		}

		/* Article Modal */
		.modal-overlay {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, 0.8);
			z-index: 2000;
			overflow-y: auto;
			padding: 20px;
		}

		.modal-content {
			background: var(--light);
			border-radius: 12px;
			max-width: 900px;
			margin: 40px auto;
			position: relative;
			animation: modalFade 0.3s ease;
		}

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

		.modal-close {
			position: absolute;
			top: 20px;
			right: 20px;
			background: white;
			border: 2px solid var(--light-gray);
			border-radius: 50%;
			width: 44px;
			height: 44px;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			font-size: 24px;
			z-index: 10;
			transition: var(--transition);
		}

		.modal-close:hover {
			background: var(--light-gray);
		}

		.article-header {
			padding: 50px 50px 30px;
		}

		.article-meta {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 20px;
			font-size: 16px;
		}

		.article-date {
			color: var(--primary);
			font-weight: 600;
			display: flex;
			align-items: center;
			margin-bottom: 15px;
			gap: 10px;
		}

		.article-title {
			font-size: 42px;
			font-weight: 800;
			line-height: 1.2;
			color: var(--dark);
		}

		.featured-image {
			margin: 0 0 10px 0;
			padding: 10px;
			display: inline-flex;
			justify-content: center;
			align-items: center;
			max-width: 100%;
		}

		.featured-image img {
			max-width: 100%;
			height: auto;
			border-radius: 8px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
		}

		.article-body {
			padding: 0 50px 50px;
			font-size: 18px;
			line-height: 1.8;
		}

		.article-body h2 {
			font-size: 32px;
			margin: 40px 0 20px;
			color: var(--dark);
		}

		.article-body h3 {
			font-size: 24px;
			margin: 30px 0 15px;
			color: var(--dark);
		}

		.article-body p {
			margin-bottom: 20px;
		}

		.article-body img:not(.featured-image img) {
			max-width: 100%;
			height: auto;
			border-radius: 8px;
			margin: 30px 0;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			padding: 20px;
			background-color: #fff;
			border: 1px solid var(--light-gray);
			box-sizing: content-box;
			display: block;
		}

		.modal-content .article-body img:not(.featured-image img) {
			max-width: 100%;
			height: auto;
			margin: 30px 0;
			padding: 20px;
			background-color: #fff;
			border: 1px solid var(--light-gray);
			border-radius: 8px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			display: block;
			box-sizing: content-box;
		}

		.article-body ul,
		.article-body ol {
			margin: 20px 0;
			padding-left: 30px;
		}

		.article-body li {
			margin-bottom: 10px;
		}

		.article-body blockquote {
			border-left: 4px solid var(--primary);
			padding-left: 20px;
			margin: 30px 0;
			font-style: italic;
			color: var(--gray);
		}

		.article-body figure {
			margin: 30px 0;
			text-align: center;
		}

		.article-body figure img {
			max-width: 100%;
			height: auto;
			border-radius: 8px;
			padding: 20px;
			background-color: #fff;
			border: 1px solid var(--light-gray);
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			margin: 0;
			box-sizing: content-box;
		}

		.article-body figcaption {
			margin-top: 10px;
			font-style: italic;
			color: var(--gray);
			font-size: 14px;
			padding: 0 20px;
		}

		.article-body a {
			color: var(--primary);
			text-decoration: none;
			border-bottom: 1px solid transparent;
			transition: var(--transition);
		}

		.article-body a:hover {
			color: var(--primary-dark);
			border-bottom-color: var(--primary);
		}

		.social-sharing {
			display: flex;
			gap: 15px;
			margin: 40px 0;
			padding: 25px;
			background: var(--light-gray);
			border-radius: 12px;
			align-items: center;
		}

		.share-label {
			font-weight: 600;
			color: var(--dark);
		}

		.share-buttons {
			display: flex;
			gap: 10px;
		}

		.share-btn {
			width: 44px;
			height: 44px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			text-decoration: none;
			transition: var(--transition);
		}

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

		.share-facebook { background: #3b5998; }
		.share-twitter { background: #1da1f2; }
		.share-linkedin { background: #0077b5; }
		.share-email { background: var(--gray); }

		.similar-articles {
			margin-top: 60px;
			padding-top: 40px;
			border-top: 2px solid var(--light-gray);
			text-align: center;
		}

		.similar-articles h3 {
			font-size: 24px;
			margin-bottom: 30px;
			color: var(--dark);
		}

		.similar-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			gap: 20px;
		}

		.similar-card {
			background: white;
			border: 1px solid var(--light-gray);
			border-radius: 8px;
			padding: 20px;
			transition: var(--transition);
		}

		.similar-card:hover {
			border-color: var(--primary);
			transform: translateY(-5px);
		}

		.similar-card h4 {
			font-size: 16px;
			margin-bottom: 10px;
			color: var(--dark);
		}

		.similar-card a {
			color: inherit;
			text-decoration: none;
		}

		@media (max-width: 992px) {
			.article-title {
				font-size: 36px;
			}
			
			.article-header,
			.article-body {
				padding-left: 40px;
				padding-right: 40px;
			}
		}

		@media (max-width: 800px) {
			.article-title {
				font-size: 32px;
			}
			
			.article-header,
			.article-body {
				padding: 30px;
			}
			
			.modal-content {
				margin: 20px auto;
			}
		}

		@media (max-width: 576px) {
			.blog-grid {
				grid-template-columns: 1fr;
				gap: 15px;
			}
			
			.article-title {
				font-size: 28px;
			}
			
			.article-body h2 {
				font-size: 24px;
			}
			
			.article-body h3 {
				font-size: 20px;
			}
		}