/* - iTRUST DIGITAL */
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;500;600;700&display=swap');

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

body {
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
	line-height: 1.6;
	color: #201F1E;
	background: #FFFFFF;
	overflow-x: hidden;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
}

/* HEADER - MICROSOFT STYLE */
/* iTRUST DIGITAL - PROFESSIONAL HEADER SYSTEM */
.main-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(225, 223, 221, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.main-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(30px);
}

.header-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	position: relative;
}

/* LOGO */
.logo-section {
	display: flex;
	align-items: center;
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-icon {
	font-size: 1.6rem;
	animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, #0078D4 0%, #106EBE 50%, #005A9E 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	position: relative;
}

.logo-text::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #0078D4, transparent);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.logo-link:hover .logo-text::after {
	transform: scaleX(1);
}

/* DESKTOP NAVIGATION */
.desktop-nav {
	display: flex;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 36px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-link {
	position: relative;
	color: #605E5C;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 8px 0;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #0078D4, #106EBE);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
	color: #0078D4;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* CTA BUTTON */
.header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cta-primary {
	background: linear-gradient(135deg, #0078D4 0%, #106EBE 100%);
	color: white;
	padding: 14px 28px;
	border: none;
	border-radius: 28px;
	font-weight: 600;
	font-size: 0.92rem;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
	position: relative;
	overflow: hidden;
}

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

.cta-primary:hover::before {
	left: 100%;
}

.cta-primary:hover {
	background: linear-gradient(135deg, #106EBE 0%, #005A9E 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 120, 212, 0.4);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	gap: 4px;
	z-index: 10001;
}

.hamburger-line {
	width: 24px;
	height: 2px;
	background: #201F1E;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(32, 31, 30, 0.95);
	backdrop-filter: blur(20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 2.5rem;
	max-width: 400px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	transform: scale(0.8) translateY(20px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active .mobile-menu {
	transform: scale(1) translateY(0);
}

/* MOBILE MENU CONTENT */
.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: white;
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: none;
}

.mobile-menu-close {
	background: none;
	border: none;
	color: white;
	font-size: 1.4rem;
	cursor: pointer;
	padding: 8px;
	border-radius: 12px;
	transition: background 0.2s ease;
}

.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.mobile-nav-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 1rem 0;
	position: relative;
	transition: all 0.3s ease;
	display: block;
}

.mobile-nav-link::before {
	content: '';
	position: absolute;
	left: -24px;
	top: 50%;
	width: 6px;
	height: 6px;
	background: #0078D4;
	border-radius: 50%;
	opacity: 0;
	transform: translateY(-50%) scale(0);
	transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	color: #0078D4;
	transform: translateX(8px);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.mobile-cta {
	margin-top: auto;
}

.mobile-cta-btn {
	width: 100%;
	justify-content: center;
	padding: 18px 28px;
	font-size: 1.1rem;
}

/* ANIMATIONS */
@keyframes logoFloat {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-4px);
	}
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
	.nav-links {
		gap: 28px;
	}

	.nav-link {
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {

	.desktop-nav,
	.header-cta {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-container {
		height: 68px;
		padding: 0 20px;
	}

	.logo-text {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0 16px;
	}

	.logo-wrapper {
		gap: 8px;
	}

	.logo-icon {
		font-size: 1.4rem;
	}
}

/* SCROLL INDICATOR */
.header-scroll-indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0078D4, #106EBE);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.main-header.scrolled .header-scroll-indicator {
	transform: scaleX(1);
}

/* HERO - MICROSOFT HERO */
.hero {
	background: linear-gradient(135deg, #F3F2F1 0%, #EDEBE9 100%);
	padding: 140px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E1DFDD" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
}

.hero h1 {
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 300;
	color: #201F1E;
	margin-bottom: 2rem;
	letter-spacing: -1px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.4rem;
	color: #605E5C;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn.secondary {
	background: transparent;
	color: #0078D4;
	border: 2px solid #0078D4;
}

.cta-btn.secondary:hover {
	background: #0078D4;
	color: white;
}

/* SECTION TITLES */
.section-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 300;
	color: #201F1E;
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: -0.5px;
	line-height: 1.1;
}

.section-subtitle {
	font-size: 1.3rem;
	color: #605E5C;
	text-align: center;
	max-width: 700px;
	margin: 1.5rem auto 4rem;
	font-weight: 400;
}

/* SERVICES - MICROSOFT GRID */
.marketing-services {
	padding: 120px 0;
	background: #FFFFFF;
}

.marketing-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 32px;
	margin-bottom: 80px;
}

.category-card {
	background: #F3F2F1;
	border: 1px solid #E1DFDD;
	border-radius: 12px;
	padding: 48px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	height: 100%;
	position: relative;
}

.category-card:hover {
	border-color: #0078D4;
	box-shadow: 0 20px 60px rgba(0, 120, 212, 0.15);
	transform: translateY(-8px);
}

.category-card.featured {
	border-color: #FF8C00;
	background: linear-gradient(135deg, #FFF2CC 0%, #F3F2F1 100%);
}

.category-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #FF8C00;
	color: #201F1E;
	padding: 8px 24px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.category-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #0078D4, #106EBE);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin-bottom: 2rem;
	box-shadow: 0 8px 24px rgba(0, 120, 212, 0.3);
}

.category-card h3 {
	font-size: 1.75rem;
	font-weight: 600;
	color: #201F1E;
	margin-bottom: 2rem;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
	color: #605E5C;
	font-weight: 500;
}

.service-list i {
	color: #107C10;
	font-size: 1.1rem;
	width: 20px;
}

/* SERVICES GRID */
.services-grid-2x3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 24px;
	margin-bottom: 80px;
}

.service-card-modern {
	background: #F3F2F1;
	border: 1px solid #E1DFDD;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card-modern:hover {
	border-color: #0078D4;
	box-shadow: 0 12px 40px rgba(0, 120, 212, 0.15);
}

.service-icon-small {
	width: 64px;
	height: 64px;
	background: #107C10;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.service-card-modern h4 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #201F1E;
	margin-bottom: 1rem;
}

/* STATS - MICROSOFT STYLE */
.stats {
	background: linear-gradient(135deg, #0078D4 0%, #106EBE 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.stat-item h3 {
	font-size: 4rem;
	font-weight: 300;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.stat-item p {
	font-size: 1.2rem;
	font-weight: 500;
	opacity: 0.9;
}

/* CONTACT FORM - MICROSOFT FORM */
.contact-form-wrapper {
	background: #F3F2F1;
	padding: 80px 0;
	border-radius: 12px;
	margin: 40px 0;
}

.form-container {
	max-width: 800px;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 48px;
	border-radius: 12px;
	border: 1px solid #E1DFDD;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-header h3 {
	font-size: 2.5rem;
	font-weight: 300;
	color: #201F1E;
	margin-bottom: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #E1DFDD;
	border-radius: 8px;
	background: #FAF9F8;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #0078D4;
	box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
	background: #FFFFFF;
}

.submit-btn {
	background: linear-gradient(135deg, #0078D4, #106EBE);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: all 0.2s ease;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #106EBE, #005A9E);
	transform: translateY(-1px);
}

/* FOOTER - MICROSOFT FOOTER */
footer {
	background: #F2F2F2;
	border-top: 1px solid #E1DFDD;
	padding: 60px 0 30px;
	color: #605E5C;
}

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

.footer-section h3 {
	color: #201F1E;
	font-weight: 600;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-section a {
	color: #605E5C;
	text-decoration: none;
	display: block;
	margin-bottom: 0.8rem;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: #0078D4;
}

.footer-bottom {
	border-top: 1px solid #E1DFDD;
	padding-top: 2rem;
	text-align: center;
	font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.fade-in {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.8rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.nav-links {
		gap: 20px;
	}
}

/* BULLETPROOF SERVICES CSS - 100% VISIBLE */
.services {
	padding: 100px 0 !important;
	background: #ffffff !important;
}

.section-title {
	text-align: center !important;
	font-size: 3rem !important;
	font-weight: 700 !important;
	margin-bottom: 4rem !important;
	color: #1e293b !important;
	text-shadow: none !important;
}

.services-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
	gap: 2rem !important;
}

.service-card {
	background: #ffffff !important;
	padding: 2.5rem 2rem !important;
	border-radius: 20px !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
	border: 2px solid #e2e8f0 !important;
	transition: all 0.4s ease !important;
	position: relative !important;
}

.service-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15) !important;
	border-color: #4f46e5 !important;
}

.service-icon {
	width: 80px !important;
	height: 80px !important;
	background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
	border-radius: 20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 2rem !important;
	color: #ffffff !important;
	margin-bottom: 1.5rem !important;
}

.service-card h3 {
	font-size: 1.6rem !important;
	font-weight: 700 !important;
	margin-bottom: 1rem !important;
	color: #111827 !important;
	line-height: 1.3 !important;
}

.service-card p {
	color: #374151 !important;
	font-size: 1.1rem !important;
	line-height: 1.6 !important;
	margin-bottom: 1.5rem !important;
}

.service-link {
	color: #4f46e5 !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
}

.service-link:hover {
	color: #3730a3 !important;
}

/* ========================================
  PROFESSIONAL ABOUT
   ======================================== */

/* PROFESSIONAL BACKGROUND */
.about-section-professional {
	padding: 140px 0;
	background: linear-gradient(135deg,
			#f8fafc 0%,
			#f1f5f9 40%,
			#e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.about-section-professional::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

/* HEADER - CORPORATE TYPOGRAPHY */
.about-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: clamp(2.8rem, 5vw, 3.6rem);
	font-weight: 200;
	color: #1e293b;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.section-subtitle {
	font-size: 1.25rem;
	color: #64748b;
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
}

/* MAIN GRID */
.about-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	margin-bottom: 80px;
	align-items: start;
}

/* CONTENT */
.about-content {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	color: white;
	padding: 14px 28px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
	align-self: flex-start;
	text-transform: uppercase;
}

.about-main-title {
	font-size: clamp(2.4rem, 4vw, 3rem);
	font-weight: 200;
	color: #0f172a;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.025em;
}

.about-text p {
	color: #475569;
	font-size: 18px;
	line-height: 1.75;
	margin: 0 0 20px 0;
	font-weight: 400;
}

/* MILESTONES - PROFESSIONAL */
.milestones-container {
	display: flex;
	gap: 48px;
	margin-top: 40px;
	padding: 32px 0;
	border-top: 1px solid #e2e8f0;
}

.milestone-item {
	flex: 1;
	text-align: center;
	padding: 20px 0;
}

.milestone-number {
	font-size: 2.6rem;
	font-weight: 300;
	color: #1e40af;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.milestone-label {
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* VISUAL - FLUENT DESIGN */
.about-visual {
	height: 520px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(148, 163, 184, 0.2);
	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.06),
		0 4px 12px rgba(0, 0, 0, 0.04);
}

.visual-mockup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 440px;
}

.device-frame {
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 24px;
	position: relative;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.device-screen {
	position: absolute;
	top: 10%;
	left: 6%;
	right: 6%;
	bottom: 10%;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.device-screen i {
	font-size: 2.8rem;
	color: #1e40af;
}

.professional-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(30, 64, 175, 0.9);
	color: white;
	padding: 12px 24px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

/* CTA - ELEVATED */
.about-cta {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 24px;
	padding: 56px 40px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-cta h3 {
	font-size: 2.3rem;
	font-weight: 200;
	color: #0f172a;
	margin-bottom: 16px;
	letter-spacing: -0.015em;
}

.about-cta p {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 36px;
	font-weight: 400;
}

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

.btn-primary,
.btn-secondary {
	padding: 18px 36px;
	border-radius: 12px;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: #1e40af;
	border: 1px solid #e2e8f0;
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: #f8fafc;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.about-main-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-visual {
		height: 420px;
		order: -1;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.about-section-professional {
		padding: 100px 0;
	}

	.about-main-title {
		font-size: 2.2rem;
	}

	.milestones-container {
		flex-direction: column;
		gap: 24px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}
}

/* ANIMATIONS */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.fade-in {
	opacity: 0;
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}


.copyright {
	text-align: center;
	padding: 1.5rem 2rem;
	border-top: 1px solid #333;
	color: #888;
	font-size: 0.9rem;
}

.copyright span {
	color: #ffd700;
	font-weight: bold;
}


:root {
	--primary: #667eea;
	--primary-dark: #5a67d8;
	--gold: #ffd700;
	--black: #0a0a15;
	--dark: #151525;
	--gray-900: #1a1a2f;
	--white: #ffffff;
	--gray: rgba(255, 255, 255, 0.9);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');

* {
	font-family: 'Inter', -apple-system, sans-serif;
}

h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 200;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 300;
}

h3 {
	font-size: 1.75rem;
	font-weight: 500;
}

/* ULTIMATE IMPRESSIVE HERO */
.hero-ultimate {
	min-height: 100vh;
	background: linear-gradient(145deg, #0a0a15 0%, #151525 50%, #1a1a2f 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-container-ultimate {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Trust Bar */
.trust-bar {
	display: flex;
	gap: 2.5rem;
	margin-bottom: 3rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.trust-item i {
	color: #ffd700;
	font-size: 16px;
}

/* Hero Title */
.hero-title-ultimate {
	font-size: clamp(3.5rem, 7vw, 5.5rem);
	font-weight: 200;
	line-height: 0.95;
	color: #ffffff;
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
}

.title-line-1 {
	display: block;
	font-weight: 200;
}

.title-line-2 {
	display: block;
	font-size: 1.15em;
	background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Informative Subtitle */
.hero-subtitle-ultimate {
	font-size: 1.45rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 4rem;
	max-width: 520px;
}

.hero-subtitle-ultimate strong {
	color: #ffd700;
	font-weight: 600;
}

/* Feature Grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.feature-icon.purple {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-icon.gold {
	background: linear-gradient(135deg, #ffd700, #fbbf24);
}

.feature-icon.green {
	background: linear-gradient(135deg, #10b981, #059669);
}

.feature-text strong {
	display: block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
}

.feature-text span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* Premium CTAs */
.cta-section {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cta-primary-ultimate {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 20px 40px;
	border-radius: 16px;
	font-weight: 600;
	font-size: 17px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow:
		0 20px 50px rgba(102, 126, 234, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
}

.cta-primary-ultimate:hover {
	transform: translateY(-6px);
	box-shadow:
		0 30px 70px rgba(102, 126, 234, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.cta-primary-ultimate:hover .cta-arrow {
	transform: translateX(6px);
}

.cta-secondary-ultimate {
	background: transparent;
	color: #ffffff;
	padding: 20px 32px;
	border-radius: 16px;
	font-weight: 500;
	font-size: 16px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(30px);
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-secondary-ultimate:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
}

/* Right Visual */
.hero-right-ultimate {
	position: relative;
	height: 600px;
}

.visual-container {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 580px;
}

.device-stack {
	position: relative;
	height: 500px;
}

.device-main {
	position: absolute;
	top: 0;
	right: 0;
	width: 480px;
	height: 340px;
	background: linear-gradient(145deg, #1a2338, #0f1a2a);
	border-radius: 32px;
	box-shadow:
		0 60px 160px rgba(0, 0, 0, 0.8),
		0 0 0 1px rgba(255, 255, 255, 0.02);
}

.device-screen-main {
	position: absolute;
	top: 32px;
	left: 32px;
	right: 32px;
	bottom: 64px;
	background: #0a1420;
	border-radius: 26px;
	overflow: hidden;
}

.dashboard-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.live-stats-overlay {
	position: absolute;
	top: 40px;
	left: 40px;
	right: 40px;
	bottom: 40px;
	pointer-events: none;
	display: flex;
	gap: 24px;
	padding: 2rem;
}

.stat-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	flex: 1;
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	color: #ffd700;
	display: block;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.device-secondary {
	position: absolute;
	bottom: -60px;
	left: 20px;
	width: 140px;
	height: 100px;
	background: linear-gradient(145deg, #667eea, #764ba2);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 30px 80px rgba(102, 126, 234, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.metric-big {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
}

.metric-label-big {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.platform-badge-ultimate {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #ffd700, #fbbf24);
	color: #0a1420;
	padding: 12px 24px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container-ultimate {
		grid-template-columns: 1fr;
		gap: 4rem;
		text-align: center;
	}

	.hero-right-ultimate {
		height: 450px;
	}

	.visual-container {
		position: relative;
		right: auto;
		transform: none;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.trust-bar {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.feature-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cta-section {
		flex-direction: column;
		align-items: center;
	}
}

/* FIXED TESTIMONIALS - PERFECT LAYOUT */
.testimonials-section {
	padding: 100px 0;
	background: linear-gradient(145deg, #0a0a15 0%, #151525 100%);
	position: relative;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* Section Header - FIXED */
.section-header {
	text-align: center;
	margin-bottom: 80px;
	padding: 0 20px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 200;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #000;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Testimonials Grid - FIXED HEIGHT */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 30px;
	margin-bottom: 80px;
}

.testimonial-card {
	background: rgba(20, 21, 37, 0.85);
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 40px 32px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	min-height: 320px;
	/* FIXED HEIGHT */
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card.featured {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
	border-color: rgba(102, 126, 234, 0.25);
}

/* Quote Icon - FIXED */
.quote-icon {
	color: rgba(255, 255, 255, 0.25);
	font-size: 28px;
	margin-bottom: 24px;
	align-self: flex-start;
}

/* Testimonial Text - FIXED */
.testimonial-text {
	font-size: 1.15rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 32px;
	flex-grow: 1;
	/* Takes available space */
}

/* Author - FIXED */
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* SAFE Avatar Placeholder */
.author-avatar-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #ffffff;
	flex-shrink: 0;
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Author Info */
.author-info {
	flex: 1;
	min-width: 0;
	/* Prevents overflow */
}

.author-name {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.author-title {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Generic Company */
.company-generic {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	background: rgba(255, 255, 255, 0.05);
	padding: 6px 12px;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 6px;
}

/* Featured Badge - FIXED POSITION */
.testimonial-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: linear-gradient(135deg, #ffd700, #fbbf24);
	color: #0a0a15;
	padding: 8px 16px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
	z-index: 2;
}

/* CTA - FIXED */
.testimonials-cta {
	text-align: center;
	padding: 48px 32px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px);
	margin: 0 -20px;
	max-width: calc(100% + 40px);
}

.testimonials-cta h3 {
	font-size: 1.8rem;
	font-weight: 300;
	color: #ffffff;
	margin-bottom: 20px;
}

.btn-cta-testimonials {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 18px 36px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	box-shadow:
		0 16px 40px rgba(102, 126, 234, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-cta-testimonials:hover {
	transform: translateY(-4px);
	box-shadow:
		0 25px 60px rgba(102, 126, 234, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 24px;
		max-width: 800px;
		margin: 0 auto 60px;
	}

	.testimonial-card {
		min-height: 300px;
		padding: 32px 24px;
	}
}

@media (max-width: 768px) {
	.testimonials-section {
		padding: 80px 0;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 500px;
		margin: 0 auto 50px;
	}

	.testimonial-author {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.testimonials-cta {
		margin: 0 -20px;
		padding: 32px 24px;
	}

	.section-header {
		margin-bottom: 60px;
	}
}
