* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #333; background: #fff; line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }

/* ===== Header ===== */
.header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
	height: 72px; display: flex; align-items: center; justify-content: space-between;
	padding: 0 60px; background: rgba(255,255,255,0.96);
	border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area .logo-icon {
	width: 36px; height: 36px; background: linear-gradient(135deg, #4C53F5, #8a5cff);
	border-radius: 8px; display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 700; font-size: 14px;
}
.logo-area .logo-text { font-size: 20px; font-weight: 700; color: #1a1a1a; }
.logo-area .logo-sub { font-size: 12px; color: #999; letter-spacing: 2px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; color: #555; transition: color 0.2s; }
.nav a:hover { color: #4C53F5; }
.actions { display: flex; align-items: center; gap: 16px; }
.btn-primary {
	padding: 10px 28px; background: linear-gradient(135deg, #4C53F5, #8a5cff);
	border-radius: 8px; color: #fff; font-size: 15px; font-weight: 600;
	cursor: pointer; border: none; transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(76,83,245,0.3); display: inline-block; text-align: center;
}
.btn-primary:hover { box-shadow: 0 4px 16px rgba(76,83,245,0.4); transform: translateY(-1px); color: #fff; }
.btn-outline {
	padding: 10px 28px; border: 2px solid #4C53F5; border-radius: 8px;
	color: #4C53F5; font-size: 15px; font-weight: 600; cursor: pointer;
	transition: all 0.2s; background: transparent; display: inline-block; text-align: center;
}
.btn-outline:hover { background: #4C53F5; color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 16px; }

/* ===== Hero ===== */
.hero {
	position: relative; padding: 160px 60px 100px; overflow: hidden;
	background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 50%, #f5f3ff 100%);
}
.hero-bg {
	position: absolute; top: 0; right: 0; width: 50%; height: 100%;
	background: radial-gradient(circle at 70% 40%, rgba(76,83,245,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge {
	display: inline-block; padding: 8px 20px; background: rgba(76,83,245,0.08);
	border-radius: 24px; font-size: 14px; color: #4C53F5; font-weight: 500;
	margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.2; color: #1a1a2e; margin-bottom: 24px; }
.gradient-text {
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-desc { font-size: 18px; color: #555; line-height: 1.7; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: #4C53F5; }
.stat-label { font-size: 13px; color: #888; margin-top: 4px; font-weight: 500; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Section Header ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 36px; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: #888; }

/* ===== About ===== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.about-card {
	padding: 36px 28px; border-radius: 16px; background: #fafbff;
	border: 1px solid #eef0ff; transition: all 0.3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.about-icon { margin-bottom: 20px; }
.about-icon svg { width: 40px; height: 40px; }
.about-card h3 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.about-card p { font-size: 15px; color: #666; line-height: 1.7; }

/* ===== Services ===== */
.services { background: #f8f9ff; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
	padding: 36px 28px; border-radius: 16px; background: #fff;
	border: 1px solid #eef0ff; transition: all 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.svc-icon { margin-bottom: 20px; }
.svc-icon svg { width: 36px; height: 36px; }
.svc-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.svc-card ul { list-style: none; padding: 0; }
.svc-card ul li {
	padding: 5px 0 5px 20px; font-size: 13px; color: #555;
	position: relative;
}
.svc-card ul li::before {
	content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 6px; height: 6px; background: #4C53F5; border-radius: 50%;
}

/* ===== Why Me ===== */
.why-me { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
	padding: 36px 28px; border-radius: 16px; background: #fafbff;
	border: 1px solid #eef0ff; transition: all 0.3s; position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.why-num {
	font-size: 48px; font-weight: 900; color: rgba(76,83,245,0.08);
	position: absolute; top: 16px; right: 24px; line-height: 1;
}
.why-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== Cases ===== */
.cases { background: #f8f9ff; }

/* ===== Pricing ===== */
.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card {
	padding: 40px 28px; border-radius: 16px; background: #fafbff;
	border: 1px solid #eef0ff; transition: all 0.3s; position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.pricing-card.featured {
	background: linear-gradient(135deg, #f8f9ff, #eef0ff);
	border-color: rgba(76,83,245,0.3);
	box-shadow: 0 4px 20px rgba(76,83,245,0.1);
}
.pricing-card.featured:hover { box-shadow: 0 8px 30px rgba(76,83,245,0.18); }
.pricing-badge {
	display: inline-block; padding: 4px 14px; background: rgba(76,83,245,0.08);
	border-radius: 12px; font-size: 12px; font-weight: 600; color: #4C53F5;
	margin-bottom: 20px; letter-spacing: 0.5px;
}
.pricing-card.featured .pricing-badge { background: #4C53F5; color: #fff; }
.pricing-icon { margin-bottom: 20px; }
.pricing-icon svg { width: 36px; height: 36px; }
.pricing-card h3 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.pricing-amount { font-size: 28px; font-weight: 800; color: #4C53F5; margin-bottom: 16px; }
.price-dollar { font-size: 36px; }
.pricing-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.pricing-card ul { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-card ul li {
	padding: 6px 0 6px 20px; font-size: 14px; color: #555;
	position: relative;
}
.pricing-card ul li::before {
	content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 6px; height: 6px; background: #4C53F5; border-radius: 50%;
}

/* Contact 2-col layout */
.contact-grid-2 { grid-template-columns: repeat(2, 1fr) !important; max-width: 800px; margin: 0 auto; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card {
	padding: 32px 24px; border-radius: 16px; background: #fff;
	border: 1px solid #eef0ff; transition: all 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.case-icon { font-size: 36px; margin-bottom: 16px; }
.case-card h4 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.case-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== Free Trial ===== */
.free-trial { background: #fff; }
.free-trial-box {
	background: linear-gradient(135deg, #4C53F5, #6c5ce7, #8a5cff);
	border-radius: 24px; padding: 64px 48px; text-align: center; color: #fff;
	position: relative; overflow: hidden;
}
.free-trial-box::before {
	content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.free-badge {
	display: inline-block; padding: 6px 20px; background: rgba(255,255,255,0.15);
	border-radius: 20px; font-size: 13px; font-weight: 700; letter-spacing: 2px;
	margin-bottom: 20px;
}
.free-trial-box h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.free-desc { font-size: 17px; opacity: 0.9; max-width: 640px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1; }
.free-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; text-align: left; }
.free-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.free-check {
	width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2);
	display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
.free-trial-box .btn-primary {
	background: #fff; color: #4C53F5; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	position: relative; z-index: 1;
}
.free-trial-box .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,0.2); }

/* ===== Contact ===== */
.contact { background: #f8f9ff; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
	padding: 40px 28px; border-radius: 16px; background: #fff;
	border: 1px solid #eef0ff; text-align: center; transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(76,83,245,0.1); border-color: rgba(76,83,245,0.2); }
.contact-icon { margin-bottom: 20px; }
.contact-icon svg { width: 40px; height: 40px; }
.contact-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.contact-value { font-size: 17px; color: #4C53F5; font-weight: 600; display: block; margin-bottom: 8px; }
.contact-value:hover { text-decoration: underline; }
.contact-card p { font-size: 13px; color: #999; }

/* ===== Footer ===== */
.footer { background: #1a1a2e; color: #ccc; padding: 60px 0 0; }
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.footer-inner { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-left { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-icon {
	width: 32px; height: 32px; background: linear-gradient(135deg, #4C53F5, #8a5cff);
	border-radius: 6px; display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 700; font-size: 12px;
}
.footer-logo span { font-size: 18px; font-weight: 700; color: #fff; }
.footer-left p { font-size: 14px; line-height: 1.7; color: #999; }
.footer-links { display: flex; gap: 60px; }
.footer-links .col h5 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-links .col a { display: block; font-size: 14px; color: #999; padding: 4px 0; transition: color 0.2s; }
.footer-links .col a:hover { color: #4C53F5; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: #666; }

/* ===== Back to Top ===== */
.back-to-top {
	position: fixed; right: 24px; bottom: 24px; z-index: 999;
	width: 48px; height: 48px; border-radius: 50%;
	background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.08);
	display: flex; align-items: center; justify-content: center; cursor: pointer;
	box-shadow: 0 2px 12px rgba(0,0,0,0.1); transition: all 0.3s;
	opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }
.back-to-top svg { width: 22px; height: 22px; color: #555; }
.back-to-top:hover svg { color: #4C53F5; }

/* ===== Hamburger ===== */
.hamburger {
	display: none; flex-direction: column; justify-content: center; align-items: center;
	width: 36px; height: 36px; background: none; border: none; cursor: pointer;
	padding: 4px; gap: 5px; z-index: 1002;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 1px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile Nav ===== */
.mobile-nav-overlay {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.4); z-index: 1000;
	opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-nav-overlay.show { opacity: 1; visibility: visible; }
.mobile-nav-drawer {
	position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
	background: #fff; z-index: 1001; padding: 80px 24px 24px;
	transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: -4px 0 20px rgba(0,0,0,0.1); overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer a {
	display: block; padding: 14px 0; font-size: 16px; color: #333;
	border-bottom: 1px solid #f0f0f0; transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: #4C53F5; }
.mobile-cta-btn {
	display: block; width: 100%; margin-top: 24px; padding: 14px;
	background: linear-gradient(135deg, #4C53F5, #8a5cff); color: #fff;
	border: none; border-radius: 8px; font-size: 16px; font-weight: 600;
	text-align: center; cursor: pointer; transition: opacity 0.2s;
}
.mobile-cta-btn:hover { opacity: 0.9; color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.about-grid { grid-template-columns: repeat(2, 1fr); }
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.cases-grid { grid-template-columns: repeat(2, 1fr); }
	.hero h1 { font-size: 42px; }
}
@media (max-width: 768px) {
	.header { padding: 0 20px; }
	.nav { display: none; }
	.hamburger { display: flex; }
	.hero { padding: 120px 20px 80px; }
	.hero h1 { font-size: 32px; }
	.hero-desc { font-size: 16px; }
	.hero-stats { gap: 24px; }
	.stat-num { font-size: 28px; }
	.section { padding: 80px 0; }
	.container { padding: 0 20px; }
	.section-header h2 { font-size: 28px; }
	.about-grid { grid-template-columns: 1fr; }
	.svc-grid { grid-template-columns: 1fr; }
	.why-grid { grid-template-columns: 1fr; }
	.cases-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-grid-2 { grid-template-columns: 1fr !important; max-width: 100%; }
	.pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
	.free-trial-box { padding: 48px 24px; }
	.free-trial-box h2 { font-size: 28px; }
	.free-details { grid-template-columns: 1fr; }
	.footer .container { padding: 0 20px; }
	.footer-inner { flex-direction: column; gap: 40px; }
	.footer-links { gap: 40px; flex-wrap: wrap; }
	.hero-cta { flex-direction: column; align-items: center; }
	.btn-lg { width: 100%; max-width: 300px; }
	.back-to-top { right: 16px; bottom: 20px; width: 40px; height: 40px; }
	.back-to-top svg { width: 18px; height: 18px; }
	.btn-primary.btn-lg, .btn-outline.btn-lg { padding: 14px 24px; }
}
@media (max-width: 480px) {
	.hero h1 { font-size: 26px; }
	.hero-desc { font-size: 14px; }
	.hero-stats { gap: 16px; }
	.stat-num { font-size: 24px; }
	.stat-label { font-size: 11px; }
	.section { padding: 60px 0; }
	.section-header h2 { font-size: 24px; }
	.free-trial-box h2 { font-size: 24px; }
	.free-trial-box { padding: 40px 20px; }
	.free-desc { font-size: 14px; }
}
