.hero {
	position: relative;
	padding: 184px 0 80px 0;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
	background: radial-gradient(900px 400px at 10% -10%, rgba(255,204,0,0.10), transparent 60%),
		radial-gradient(900px 400px at 90% 0%, rgba(248,180,0,0.08), transparent 60%),
		var(--bg);
	margin-top: 64px;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 1px 1px, rgba(248,180,0,0.12) 1px, transparent 0),
		radial-gradient(circle at 1px 1px, rgba(255,204,0,0.08) 1px, transparent 0);
	background-size: 50px 50px, 70px 70px;
	background-position: 0 0, 25px 25px;
	opacity: 0.3;
	animation: patternMove 25s linear infinite;
	pointer-events: none;
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(45deg, transparent 48%, rgba(248,180,0,0.02) 49%, rgba(248,180,0,0.02) 51%, transparent 52%);
	background-size: 100px 100px;
	animation: patternMove 35s linear infinite reverse;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

.hero .bg {
	position: absolute;
	inset: -20% -10% -10% -10%;
	pointer-events: none;
	z-index: 0;
}

.mesh {
	position: absolute;
	inset: 0;
	background: conic-gradient(from 0deg at 50% 50%, rgba(248,180,0,0.06), rgba(255,204,0,0.08), rgba(248,180,0,0.06));
	filter: blur(60px);
	animation: spin 26s linear infinite;
	opacity: 0.7;
}

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

/* Animated Waves */
.wave {
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(248,180,0,0.12) 0%, transparent 70%);
	border-radius: 50%;
	animation: waveMove 20s ease-in-out infinite;
}

.wave-1 {
	top: -50%;
	left: -50%;
	animation-duration: 25s;
	animation-delay: 0s;
}

.wave-2 {
	top: -30%;
	right: -50%;
	animation-duration: 30s;
	animation-delay: 5s;
	background: radial-gradient(ellipse at center, rgba(255,204,0,0.1) 0%, transparent 70%);
}

@keyframes waveMove {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
	50% { transform: translate(10%, 15%) scale(1.2); opacity: 0.8; }
}

/* Animated Grid Pattern */
.grid-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(248,180,0,0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(248,180,0,0.08) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 40s linear infinite;
	opacity: 0.5;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

/* Nodes/Particles */
.nodes {
	position: absolute;
	inset: 0;
	opacity: 0.75;
}

.node {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary-2), var(--accent));
	box-shadow: 0 0 0 4px rgba(248,180,0,0.09), 0 0 14px rgba(248,180,0,0.17);
	animation: float 6s ease-in-out infinite;
}

.node-small {
	width: 4px;
	height: 4px;
	box-shadow: 0 0 0 2px rgba(248,180,0,0.08), 0 0 8px rgba(248,180,0,0.15);
}

.node-medium {
	width: 12px;
	height: 12px;
	box-shadow: 0 0 0 5px rgba(248,180,0,0.10), 0 0 18px rgba(248,180,0,0.20);
}

.node:nth-child(1) { top: 18%; left: 22%; animation-delay: 0.1s; }
.node:nth-child(2) { top: 28%; left: 60%; animation-delay: 0.6s; }
.node:nth-child(3) { top: 58%; left: 38%; animation-delay: 1.0s; }
.node:nth-child(4) { top: 66%; left: 72%; animation-delay: 1.4s; }
.node:nth-child(5) { top: 40%; left: 12%; animation-delay: 1.8s; }
.node:nth-child(6) { top: 25%; left: 45%; animation-delay: 2.2s; }
.node:nth-child(7) { top: 70%; left: 25%; animation-delay: 2.6s; }
.node:nth-child(8) { top: 50%; left: 80%; animation-delay: 3.0s; }
.node:nth-child(9) { top: 35%; left: 15%; animation-delay: 3.4s; }
.node:nth-child(10) { top: 65%; left: 55%; animation-delay: 3.8s; }

@keyframes float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(10px, -15px) scale(1.1); }
	50% { transform: translate(-5px, -25px) scale(0.9); }
	75% { transform: translate(-10px, -10px) scale(1.05); }
}

/* Floating Orbs */
.orbs {
	position: absolute;
	inset: 0;
}

.orb {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255,212,74,0.4), rgba(248,180,0,0.1));
	filter: blur(20px);
	animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 5%;
	animation-duration: 18s;
}

.orb-2 {
	width: 150px;
	height: 150px;
	top: 60%;
	right: 10%;
	animation-duration: 22s;
	animation-delay: 3s;
}

.orb-3 {
	width: 180px;
	height: 180px;
	bottom: 15%;
	left: 50%;
	animation-duration: 20s;
	animation-delay: 6s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -40px) scale(1.2); }
	66% { transform: translate(-20px, 30px) scale(0.8); }
}

/* Pulse Waves */
.pulse-waves {
	position: absolute;
	inset: 0;
}

.pulse-wave {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(248,180,0,0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 4s ease-out infinite;
}

.pulse-wave:nth-child(1) {
	animation-delay: 0s;
}

.pulse-wave:nth-child(2) {
	animation-delay: 1.3s;
	width: 150px;
	height: 150px;
}

.pulse-wave:nth-child(3) {
	animation-delay: 2.6s;
	width: 200px;
	height: 200px;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

.hero .content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero h1 {
	font-size: 48px;
	line-height: 1.4;
	margin: 0 0 12px 0;
	opacity: 0;
	animation: slideInUp 0.8s ease 0.2s forwards;
}

.hero p.lead {
	color: var(--muted);
	font-size: 20px;
	max-width: 840px;
	margin: 0 auto 22px auto;
	opacity: 1;
	text-align: justify;
}

.hero p.lead.word-by-word {
	opacity: 1;
}

.word-by-word .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: wordReveal 0.8s ease forwards;
	margin-right: 0.25em;
}

@keyframes wordReveal {
	from {
		opacity: 0;
		transform: translateY(20px) rotateX(90deg);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
		filter: blur(0);
	}
}

.hero-ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-visual {
	position: relative;
	margin-top: 40px;
}

.dashboard { position: relative; }
.dashboard::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 18px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(248,180,0,0.6), rgba(255,204,0,0.6));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
	0%,100% { opacity: 0.35; }
	50% { opacity: 0.7; }
}

.feature {
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(248,180,0,0.13);
	border-color: rgba(248,180,0,0.45);
}

.dashboard .row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

.panel {
	min-height: 180px;
	border-radius: 16px;
	border: 2px solid var(--border);
	background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
	padding: 18px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	opacity: 0; /* Hide the top border line effect */
	pointer-events: none;
}

.panel:hover::before {
	transform: scaleX(0); /* Keep it hidden on hover */
	opacity: 0; /* Hide the top border line effect */
}

.panel::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(248,180,0,0.1), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.panel:hover::after {
	opacity: 1;
}

.panel:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 18px 48px rgba(248,180,0,0.2);
	border-color: rgba(248,180,0,0.5);
	background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(248,180,0,0.06));
}

.panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.panel-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	color: #18191a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	box-shadow: 0 4px 12px rgba(248,180,0,0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}

.panel:hover .panel-icon {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 6px 20px rgba(248,180,0,0.4);
}

.panel .title {
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	transition: color 0.3s ease;
}

.panel:hover .title {
	color: var(--primary-2);
}

.panel-1::before {
	background: linear-gradient(90deg, #0077b5, var(--primary));
}

.panel-2::before {
	background: linear-gradient(90deg, #8b5cf6, var(--primary));
}

.panel-3::before {
	background: linear-gradient(90deg, var(--primary-2), var(--accent));
}

.integrations {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 24px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-elev);
	color: var(--muted);
}

.problem .grid { grid-template-columns: 1.2fr 1fr; }

.problem .card { height: 100%; }

.features .grid { grid-template-columns: repeat(4, 1fr); }

.feature {
	padding: 20px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: var(--card);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.feature::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(248,180,0,0.08), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.feature:hover::after {
	opacity: 1;
}

.feature:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 20px 56px rgba(248,180,0,0.25);
	border-color: rgba(248,180,0,0.55);
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,180,0,0.06));
}

.feature:hover .feature-icon {
	transform: scale(1.18) rotate(10deg);
	box-shadow: 0 12px 36px rgba(248,180,0,0.45);
	background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.feature:hover h3 {
	color: var(--primary-2);
	transform: translateX(6px);
}

.feature:hover ul li {
	transform: translateX(4px);
	opacity: 1;
}

.feature h3 {
	transition: color 0.3s ease, transform 0.3s ease;
}

.feature ul li {
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.9;
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	color: #18191a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	font-size: 20px;
	box-shadow: 0 6px 18px rgba(248,180,0,0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.outreach .card { background: linear-gradient(180deg, rgba(248,180,0,0.03), rgba(255,255,255,0.04)); }

.why .points {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

/* Benefit Cards Design */
.benefit-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 2px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.benefit-card:hover::before {
	transform: scaleX(1);
}

.benefit-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(248,180,0,0.15), transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
	pointer-events: none;
}

.benefit-card:hover::after {
	width: 200px;
	height: 200px;
}

.benefit-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 20px 56px rgba(248,180,0,0.25);
	border-color: rgba(248,180,0,0.6);
	background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,180,0,0.05));
}

.benefit-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	color: #18191a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 6px 20px rgba(248,180,0,0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.2) rotate(-10deg);
	box-shadow: 0 10px 32px rgba(248,180,0,0.5);
	background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.benefit-content {
	flex: 1;
}

.benefit-content h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px 0;
	color: var(--text);
	transition: color 0.3s ease, transform 0.3s ease;
	text-align: left;
	width: 100%;
}

.benefit-card:hover .benefit-content h3 {
	color: var(--primary-2);
	transform: translateX(4px);
}

.benefit-content p {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
	transition: color 0.3s ease;
	text-align: justify;
}

.benefit-card:hover .benefit-content p {
	color: var(--text);
}

.cta-center { text-align: center; }

/* Step Cards Hover Effects */
.step-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

.step-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 50px rgba(248,180,0,0.2);
	border-color: rgba(248,180,0,0.5);
}

.step-card:hover .step-icon {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 10px 30px rgba(248,180,0,0.35);
}

.step-icon {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Metric Cards Hover Effects */
.metric-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-align: center;
}

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

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

.metric-card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 24px 60px rgba(248,180,0,0.25);
	border-color: rgba(248,180,0,0.6);
	background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,180,0,0.05));
}

.metric-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
	transition: transform 0.3s ease, color 0.3s ease;
	display: block;
	text-align: center;
	letter-spacing: -1px;
	width: 100%;
}

.metric-title {
	font-size: 18px;
	margin: 0 0 8px 0;
	text-align: center;
	color: var(--text);
}

.metric-description {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
	text-align: center;
}

.metric-number.animated {
	animation: pulseNumber 0.5s ease-out;
}

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

/* Use Case Cards Hover Effects */
.use-case-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.use-case-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.use-case-card:hover::before {
	transform: scaleX(1);
}

.use-case-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 16px 48px rgba(248,180,0,0.22);
	border-color: rgba(248,180,0,0.5);
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,180,0,0.04));
}

.use-case-card:hover .use-case-icon {
	transform: scale(1.2) rotate(-5deg);
	box-shadow: 0 12px 32px rgba(248,180,0,0.4);
	background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.use-case-card:hover h3 {
	color: var(--primary-2);
	transform: translateX(4px);
}

.use-case-card h3 {
	transition: color 0.3s ease, transform 0.3s ease;
}

.use-case-icon {
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.metric-card:hover .metric-number {
	transform: scale(1.15);
	color: var(--primary-2);
	text-shadow: 0 0 20px rgba(248,180,0,0.4);
}

@media (max-width: 1024px) {
	.features .grid { grid-template-columns: repeat(2, 1fr); }
	.why .points { grid-template-columns: repeat(2, 1fr); }
	.problem .grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion Styles */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.accordion-item {
	border: 2px solid var(--border);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item.active {
	border-color: rgba(248,180,0,0.5);
	box-shadow: 0 8px 24px rgba(248,180,0,0.15);
}

.accordion-header {
	width: 100%;
	padding: 20px;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: var(--text);
	font-size: 18px;
	font-weight: 600;
	transition: color 0.3s ease, background 0.3s ease;
}

.accordion-header:hover {
	color: var(--primary-2);
	background: rgba(248,180,0,0.05);
}

.accordion-header span {
	flex: 1;
}

.accordion-icon {
	font-size: 14px;
	color: var(--primary);
	transition: transform 0.3s ease, color 0.3s ease;
	flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
	color: var(--primary-2);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	padding: 0 20px;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
	padding: 0 20px 20px 20px;
}

.accordion-content p {
	color: var(--muted);
	margin: 0;
	line-height: 1.7;
	font-size: 15px;
	text-align: justify;
}

@media (max-width: 768px) {
	.hero-visual { margin-top: 32px; }
	.problem .grid { grid-template-columns: 1fr !important; gap: 16px; }
	.features .grid { grid-template-columns: repeat(2, 1fr) !important; }
	.why .points { grid-template-columns: 1fr; }
	.benefit-card {
		flex-direction: row;
		align-items: center;
	}
	.accordion-header {
		font-size: 16px;
		padding: 16px;
	}
	.section { padding: 56px 0; }
	.section h2 { font-size: 28px; }
	.pricing-hero h1 { font-size: 32px; }
	.outreach .grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
	.hero { padding: 80px 0 48px 0; margin-top: 64px; }
	.hero h1 { font-size: 28px; line-height: 1.2; }
	.hero p.lead { font-size: 15px; }
	.hero-ctas { flex-direction: column; width: 100%; }
	.hero-ctas .btn { width: 100%; justify-content: center; }
	.dashboard { padding: 12px; }
	.dashboard .row { grid-template-columns: 1fr; gap: 10px; }
	.panel { min-height: auto; padding: 14px; }
	.integrations { flex-wrap: wrap; justify-content: center; gap: 8px; }
	.badge { font-size: 11px; padding: 6px 10px; }
	.dashboard .row { grid-template-columns: 1fr; }
	.why .points { grid-template-columns: 1fr; }
	.features .grid { grid-template-columns: 1fr !important; }
	.feature { padding: 16px; }
	.feature-icon { width: 40px; height: 40px; font-size: 18px; }
	.step-card { padding: 16px; }
	.metric-card { padding: 16px; }
	.metric-number { font-size: 36px; }
	.use-case-card { padding: 16px; }
	.benefit-card { padding: 16px; }
	.benefit-icon { width: 44px; height: 44px; font-size: 20px; }
	.accordion-header { font-size: 15px; padding: 16px; }
	.accordion-content { font-size: 14px; }
}

/* Stats cards responsive */
@media (max-width: 1024px) {
	.section .grid[style*="repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
	.section .grid[style*="repeat(5, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
	.section .grid[style*="repeat(4, 1fr)"] { grid-template-columns: 1fr !important; }
	.section .grid[style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
	.section .grid[style*="repeat(5, 1fr)"] { grid-template-columns: 1fr !important; }
	.section .grid[style*="gap: 32px"] { gap: 20px !important; }
	.section .grid[style*="gap: 24px"] { gap: 16px !important; }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
	.hero h1 { font-size: 24px; margin-bottom: 10px; }
	.hero p.lead { font-size: 14px; }
	.section h2 { font-size: 24px; }
	.section .eyebrow { font-size: 11px; }
	.card { padding: 16px; }
	.panel-header { flex-direction: column; align-items: flex-start; gap: 8px; }
	.panel-icon { width: 32px; height: 32px; font-size: 14px; }
	.chips { gap: 6px; }
	.chip { padding: 6px 10px; font-size: 11px; }
	.feature ul { font-size: 13px; }
	.feature ul li { margin: 6px 0; }
	.hero-visual { margin-top: 24px; }
	.integrations { margin-top: 16px; gap: 6px; }
	.badge { padding: 6px 8px; font-size: 10px; }
	.step-card h3 { font-size: 16px; }
	.metric-number { font-size: 32px; }
	.benefit-content h3 { font-size: 15px; }
	.benefit-content p { font-size: 12px; }
	.accordion-header span { font-size: 14px; }
	.accordion-content p { font-size: 13px; }
}
